crawlab/core/interfaces/module.go

11 lines
104 B
Go

package interfaces
type ModuleId int
type Module interface {
Init() error
Start()
Wait()
Stop()
}