Files
crawlab/backend/apps/base.go
2021-04-07 11:25:00 +08:00

7 lines
52 B
Go

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