mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
8 lines
126 B
Go
8 lines
126 B
Go
package service
|
|
|
|
import "os/exec"
|
|
|
|
type ServiceConfig struct {
|
|
IsRunningAsService bool
|
|
DefaultRestartCommand *exec.Cmd
|
|
}
|