overflow_probes/manager/central/central.go

18 lines
316 B
Go
Raw Normal View History

2017-12-05 10:02:58 +00:00
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
}