1
0
Fork 0
telegraf/plugins/processors/port_name/services_path.go

13 lines
190 B
Go
Raw Permalink Normal View History

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