overflow_probes/manager/central/central.go
crusader 47d4a0b57d ing
2017-12-05 19:02:58 +09:00

18 lines
316 B
Go

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
}