mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
8 lines
97 B
Go
8 lines
97 B
Go
package corroservice
|
|
|
|
type Service interface {
|
|
Start() error
|
|
Restart() error
|
|
Running() bool
|
|
}
|