gogs/vendor/github.com/kardianos/minwinsvc
Unknwon 2fd69f13d9
vendor: check in vendors
Bye bye glide...
2017-02-09 19:48:13 -05:00
..
LICENSE vendor: check in vendors 2017-02-09 19:48:13 -05:00
README.md vendor: check in vendors 2017-02-09 19:48:13 -05:00
minwinsvc.go vendor: check in vendors 2017-02-09 19:48:13 -05:00
svc_other.go vendor: check in vendors 2017-02-09 19:48:13 -05:00
svc_windows.go vendor: check in vendors 2017-02-09 19:48:13 -05:00

README.md

Minimal windows service stub

Programs designed to run from most *nix style operating systems can import this package to enable running programs as services without modifying them.

import _ "github.com/kardianos/minwinsvc"

If you need more control over the exit behavior, set

minwinsvc.SetOnExit(func() {
	// Do something.
	// Within 10 seconds call:
	os.Exit(0)
})