├── .gitignore ├── LICENSE ├── README.md ├── attr_default.go ├── attr_windows.go ├── daemon.go ├── example ├── auto_restart │ └── main.go └── background │ └── main.go └── go.mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/README.md -------------------------------------------------------------------------------- /attr_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/attr_default.go -------------------------------------------------------------------------------- /attr_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/attr_windows.go -------------------------------------------------------------------------------- /daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/daemon.go -------------------------------------------------------------------------------- /example/auto_restart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/example/auto_restart/main.go -------------------------------------------------------------------------------- /example/background/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zh-five/xdaemon/HEAD/example/background/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/zh-five/xdaemon 2 | 3 | go 1.13 4 | --------------------------------------------------------------------------------