SetConfig sets the project config for post-completion actions.
(cfg *config.Config)
| 128 | |
| 129 | // SetConfig sets the project config for post-completion actions. |
| 130 | func (m *Manager) SetConfig(cfg *config.Config) { |
| 131 | m.mu.Lock() |
| 132 | defer m.mu.Unlock() |
| 133 | m.config = cfg |
| 134 | } |
| 135 | |
| 136 | // Config returns the current project config. |
| 137 | func (m *Manager) Config() *config.Config { |
no outgoing calls