wip: 刚刚开始, 探索阶段

This commit is contained in:
loveuer
2024-10-23 17:46:15 +08:00
commit eb1744bd0d
10 changed files with 249 additions and 0 deletions

9
internal/opt/config.go Normal file
View File

@ -0,0 +1,9 @@
package opt
type config struct {
Debug bool `json:"debug"`
}
var (
Cfg = config{}
)