🎉 start the project

This commit is contained in:
loveuer
2025-07-09 22:50:23 +08:00
commit 84348f9eaf
31 changed files with 9990 additions and 0 deletions

7
internal/opt/opt.go Normal file
View File

@ -0,0 +1,7 @@
package opt
type config struct {
Debug bool
}
var Cfg = &config{}

5
internal/opt/var.go Normal file
View File

@ -0,0 +1,5 @@
package opt
var (
Version = "<UNKNOWN>"
)