gitee.com/h79/goutils@v1.22.10/common/svc/svc.go (about) 1 //go:build !windows 2 3 package svc 4 5 func DoService(conf Config, startService func(isWindowsService bool), stopService func()) { 6 7 startService(false) 8 9 stopService() 10 }