Rainbond/gateway/controller/service.go
2018-12-05 22:06:21 +08:00

15 lines
253 B
Go

package controller
import (
"github.com/goodrain/rainbond/gateway/v1"
)
type GWServicer interface {
Start(errCh chan error)
Stop() error
Check() error
PersistConfig(conf *v1.Config) error
UpdatePools(pools []*v1.Pool) error
WaitPluginReady()
}