Config returns the current project config.
()
| 135 | |
| 136 | // Config returns the current project config. |
| 137 | func (m *Manager) Config() *config.Config { |
| 138 | m.mu.RLock() |
| 139 | defer m.mu.RUnlock() |
| 140 | return m.config |
| 141 | } |
| 142 | |
| 143 | // Events returns the channel for receiving events from all loops. |
| 144 | func (m *Manager) Events() <-chan ManagerEvent { |
no outgoing calls