mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 20:57:38 +08:00
15 lines
253 B
Go
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()
|
|
}
|