Files
crawlab/core/interfaces/module.go
2024-11-05 11:15:27 +08:00

10 lines
90 B
Go

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