Files
ss/internal/service/wrapper_macos_stub.go
2026-07-19 20:01:38 +08:00

12 lines
302 B
Go

//go:build !darwin
package service
import "fmt"
// RunMacOSWrapper is only meaningful on macOS; this stub lets the CLI
// package build on other platforms.
func RunMacOSWrapper(executable, configDir string, args []string) error {
return fmt.Errorf("service run-macos is only supported on macOS")
}