管理端全部功能跑通

This commit is contained in:
robin
2026-02-27 10:35:22 +08:00
parent 4d275c921d
commit 150799f41d
263 changed files with 22664 additions and 4053 deletions

View File

@@ -0,0 +1,14 @@
//go:build !linux
// +build !linux
package utils
import "errors"
func (m *ServiceManager) Install(exePath string, args []string) error {
return errors.New("service install is only supported on linux in this version")
}
func (m *ServiceManager) Uninstall() error {
return errors.New("service uninstall is only supported on linux in this version")
}