commit this WIP stuff to a feature branch

This commit is contained in:
brent saner
2025-12-06 19:19:53 -05:00
parent 803be548cf
commit 241a46c9b4
8 changed files with 981 additions and 317 deletions

View File

@@ -0,0 +1,26 @@
//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
}