mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 11:50:28 +08:00
19 lines
305 B
Go
19 lines
305 B
Go
//go:build !linux && !windows
|
|
|
|
package utils
|
|
|
|
// 安装服务
|
|
func (this *ServiceManager) Install(exePath string, args []string) error {
|
|
return nil
|
|
}
|
|
|
|
// 启动服务
|
|
func (this *ServiceManager) Start() error {
|
|
return nil
|
|
}
|
|
|
|
// 删除服务
|
|
func (this *ServiceManager) Uninstall() error {
|
|
return nil
|
|
}
|