()
| 35 | } |
| 36 | |
| 37 | func (a *applicationImpl) Config() *server.Configuration { |
| 38 | if a.configuration == nil { |
| 39 | cfg, err := server.DefaultConfiguration() |
| 40 | verifyFatal(err) |
| 41 | a.configuration = &cfg |
| 42 | } |
| 43 | return a.configuration |
| 44 | } |
| 45 | |
| 46 | func (a *applicationImpl) Client() *server.Client { |
| 47 | if a.client == nil { |
no test coverage detected