q/src/config/os.go
2025-03-12 23:15:43 +01:00

12 lines
88 B
Go

package config
type OS uint8
const (
UnknownOS OS = iota
Linux
Mac
Web
Windows
)