• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSEH A D22-Nov-2015870

README.mdH A D22-Nov-2015388

minwinsvc.goH A D22-Nov-2015662

svc_other.goH A D22-Nov-2015238

svc_windows.goH A D22-Nov-20151.2 KiB

README.md

1### Minimal windows service stub
2
3Programs designed to run from most *nix style operating systems
4can import this package to enable running programs as services without modifying
5them.
6
7```
8import _ "github.com/kardianos/minwinsvc"
9```
10
11If you need more control over the exit behavior, set
12```
13minwinsvc.SetOnExit(func() {
14	// Do something.
15	// Within 10 seconds call:
16	os.Exit(0)
17})
18```
19