IsBootstrapped checks if the application was initialized (aka. whether Bootstrap() was called).
()
| 381 | // IsBootstrapped checks if the application was initialized |
| 382 | // (aka. whether Bootstrap() was called). |
| 383 | func (app *BaseApp) IsBootstrapped() bool { |
| 384 | return app.concurrentDB != nil && app.auxConcurrentDB != nil |
| 385 | } |
| 386 | |
| 387 | // Bootstrap initializes the application |
| 388 | // (aka. create data dir, open db connections, load settings, etc.). |
no outgoing calls