Files
crawlab/backend/apps/master.go
2021-04-29 10:44:46 +08:00

24 lines
275 B
Go

package apps
type Master struct {
api *Api
}
func (app *Master) Init() {
panic("implement me")
}
func (app *Master) Run() {
panic("implement me")
}
func (app *Master) Stop() {
panic("implement me")
}
func NewMaster() *Master {
return &Master{
api: NewApi(),
}
}