12 lines
190 B
Go
12 lines
190 B
Go
//go:build windows
|
|
|
|
package port_name
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func servicesPath() string {
|
|
return filepath.Join(os.Getenv("WINDIR"), "system32", "drivers", "etc", "services")
|
|
}
|