11 lines
248 B
Go
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 = ""
|
|
)
|