mirror of
https://github.com/jkstack/libagent.git
synced 2025-12-24 12:11:57 +08:00
9 lines
112 B
Go
9 lines
112 B
Go
package agent
|
|
|
|
type builtinService interface {
|
|
Install() error
|
|
Uninstall() error
|
|
Run() error
|
|
Stop() error
|
|
}
|