mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
17 lines
251 B
Go
17 lines
251 B
Go
package main
|
|
|
|
import "golang.org/x/sys/windows/svc/mgr"
|
|
|
|
func ServiceManagerStartNotify() error {
|
|
mgr, err := mgr.Connect()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_ = mgr.Disconnect()
|
|
|
|
return nil
|
|
}
|
|
|
|
func ServiceManagerReadyNotify() error {
|
|
return nil
|
|
}
|