12 lines
302 B
Go
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")
|
|
}
|