- Run without console by default - Log to file once console hidden - Recover panics in background goroutines - Restart agent after unexpected errors - Use shared instance launch helper
12 lines
142 B
Go
12 lines
142 B
Go
//go:build !windows
|
|
|
|
package instance
|
|
|
|
func Launch(exe string, args []string) error {
|
|
return nil
|
|
}
|
|
|
|
func RestartSelf() error {
|
|
return nil
|
|
}
|