//go:build windows package envs import ( "golang.org/x/sys/windows" ) func (s *StaticEnv) platChecks() (err error) { return } func (s *StaticEnv) setProcVal(key, value string) (err error) { err = windows.Setenv(key, value) return } func (s *StaticEnv) unsetProcVal(key string) (err error) { err = windows.Unsetenv(key) return }