2021-08-18 13:07:09 +02:00
|
|
|
//go:build windows || plan9 || js
|
|
|
|
// +build windows plan9 js
|
|
|
|
|
2022-08-28 13:21:57 +02:00
|
|
|
// Package daemonize provides daemonization stub for non-Unix platforms.
|
2021-08-18 13:07:09 +02:00
|
|
|
package daemonize
|
|
|
|
|
|
|
|
import (
|
2021-11-04 11:12:57 +01:00
|
|
|
"fmt"
|
2021-08-18 13:07:09 +02:00
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StartDaemon runs background twin of current process.
|
|
|
|
func StartDaemon(args []string) (*os.Process, error) {
|
2021-11-04 11:12:57 +01:00
|
|
|
return nil, fmt.Errorf("background mode is not supported on %s platform", runtime.GOOS)
|
2021-08-18 13:07:09 +02:00
|
|
|
}
|