EncryptionEnv returns the name of the app secret env key (currently used primarily for optional settings encryption but this may change in the future).
()
| 585 | // EncryptionEnv returns the name of the app secret env key |
| 586 | // (currently used primarily for optional settings encryption but this may change in the future). |
| 587 | func (app *BaseApp) EncryptionEnv() string { |
| 588 | return app.config.EncryptionEnv |
| 589 | } |
| 590 | |
| 591 | // IsDev returns whether the app is in dev mode. |
| 592 | // |
no outgoing calls