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

8 lines
60 B
Go

package apps
type App interface {
Init()
Run()
Stop()
}