initial commit

This commit is contained in:
2025-01-23 16:00:50 +08:00
commit 70fe1ab91e
5 changed files with 179 additions and 0 deletions

10
config-configure-type.go Normal file
View File

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