Files
json-configure-golang/config-configure-type.go
2025-01-23 16:00:50 +08:00

11 lines
248 B
Go

package main
type ConfigContainerType string
const (
BesidesExe ConfigContainerType = "besides-exe"
UserConfig ConfigContainerType = "user-config"
SystemConfig ConfigContainerType = "system-config"
None ConfigContainerType = ""
)