windows.go 85 B

12345678
  1. //go:build windows
  2. package platform
  3. const (
  4. isUnix = false
  5. isWindows = true
  6. )