18 lines
224 B
Go
18 lines
224 B
Go
//go:build windows
|
|
|
|
package windows
|
|
|
|
type platform struct{}
|
|
|
|
func newPlatform() Platform {
|
|
return platform{}
|
|
}
|
|
|
|
func (platform) OS() string {
|
|
return "windows"
|
|
}
|
|
|
|
func (platform) Edition() Edition {
|
|
return EditionLegacy
|
|
}
|