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

11 lines
250 B
Go

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