initial commit

This commit is contained in:
2025-01-23 16:17:09 +08:00
parent 6be4027959
commit c61fa68041
4 changed files with 9 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
package config
type ConfigContainerType string
const (
BesidesExe ConfigContainerType = "besides-exe"
UserConfig ConfigContainerType = "user-config"
SystemConfig ConfigContainerType = "system-config"
None ConfigContainerType = ""
)