()
| 74 | } |
| 75 | |
| 76 | func (app *Application) Settings() Settings { |
| 77 | app.mutex.RLock() |
| 78 | defer app.mutex.RUnlock() |
| 79 | return app.settings |
| 80 | } |
| 81 | |
| 82 | func (app *Application) SetSettings(value Settings) { |
| 83 | app.mutex.Lock() |
no outgoing calls
no test coverage detected