Files
crawlab/core/interfaces/module.go
2024-06-14 15:42:50 +08:00

11 lines
104 B
Go

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