Files
libagent/service.go
2022-08-02 17:01:46 +08:00

9 lines
112 B
Go

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