10 lines
181 B
Go
10 lines
181 B
Go
|
// +build !linux
|
||
|
|
||
|
package command
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
func (c *SpawnDaemonCommand) Run(args []string) int {
|
||
|
return c.outputStartStatus(errors.New("spawn-daemon not supported"), 1)
|
||
|
}
|