mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
17 lines
215 B
Go
17 lines
215 B
Go
package apps
|
|
|
|
import "github.com/crawlab-team/crawlab-core/interfaces"
|
|
|
|
type App interface {
|
|
Init()
|
|
Start()
|
|
Wait()
|
|
Stop()
|
|
}
|
|
|
|
type MasterApp interface {
|
|
App
|
|
interfaces.WithConfigPath
|
|
SetRunOnMaster(ok bool)
|
|
}
|