mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
10 lines
153 B
Go
10 lines
153 B
Go
package corroservice
|
|
|
|
import "context"
|
|
|
|
type Service interface {
|
|
Start(ctx context.Context) error
|
|
Restart(ctx context.Context) error
|
|
Running() bool
|
|
}
|