Files
libagent/service.go
2022-09-06 14:48:44 +08:00

10 lines
131 B
Go

package agent
type builtinService interface {
Install() error
Uninstall() error
Run() error
Stop() error
Platform() string
}