mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
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)
|
|
}
|