(connId connections.ConnectionId)
| 86 | } |
| 87 | |
| 88 | func (m *CLIBridgeModule) removeSession(connId connections.ConnectionId) { |
| 89 | m.mu.Lock() |
| 90 | defer m.mu.Unlock() |
| 91 | delete(m.sessions, connId) |
| 92 | } |
| 93 | |
| 94 | func (m *CLIBridgeModule) isEnabled() bool { |
| 95 | v := m.plug.Config.Get(`Enabled`) |
no test coverage detected