Files
2026-07-13 15:08:24 +08:00

14 lines
208 B
Go

//go:build !windows && !linux
package main
import "os"
func runService() (bool, error) {
return false, nil
}
func preparePlatformWorkingDirectory() error {
return os.MkdirAll(workingDirectory, 0o700)
}