mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
14 lines
208 B
Go
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)
|
|
}
|