AppConfig returns the optional configuration parameters object that the app can request from the app handler. It can be nil.
()
| 518 | // AppConfig returns the optional configuration parameters object that the app |
| 519 | // can request from the app handler. It can be nil. |
| 520 | func (a *Handler) AppConfig() map[string]interface{} { |
| 521 | return a.appConfig |
| 522 | } |
| 523 | |
| 524 | // BackendURL returns the appBackendURL that the app handler will proxy to. |
| 525 | func (a *Handler) BackendURL() string { |
no outgoing calls
no test coverage detected