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