Port=9090
Path="/some/app/path"
Executable="executable_file_name"
+Args=["-a", "first arg", "-b", "second arg"]
\ No newline at end of file
Port int
Path string
Executable string
+ Args []string
}
type Config struct {
cmd = &exec.Cmd {
Dir: config.Service.Path,
Path: config.Service.Path + "/" + config.Service.Executable,
- Args: []string{config.Service.Path + "/" + config.Service.Executable},
+ Args: append([]string{config.Service.Path + "/" + config.Service.Executable}, config.Service.Args...),
Stdout: os.Stdout,
Stderr: os.Stdout,
}