mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
10 lines
149 B
Go
10 lines
149 B
Go
package interfaces
|
|
|
|
type GrpcBase interface {
|
|
WithConfigPath
|
|
Init() (err error)
|
|
Start() (err error)
|
|
Stop() (err error)
|
|
Register() (err error)
|
|
}
|