package central import ( oogwc "git.loafle.net/overflow/overflow_gateway_websocket/client" ) type CentralManager interface { GetClient(name string) oogwc.Client } type centralManager struct { clients map[string]oogwc.Client } func (cm *centralManager) GetClient(entryPath string) oogwc.Client { return nil }