9 lines
126 B
Go
9 lines
126 B
Go
package service
|
|
|
|
import "os/exec"
|
|
|
|
type ServiceConfig struct {
|
|
IsRunningAsService bool
|
|
DefaultRestartCommand *exec.Cmd
|
|
}
|