feat: migrate to golang
This commit is contained in:
11
internal/service/wrapper_macos_stub.go
Normal file
11
internal/service/wrapper_macos_stub.go
Normal file
@ -0,0 +1,11 @@
|
||||
//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")
|
||||
}
|
||||
Reference in New Issue
Block a user