wip: v0.0.5

This commit is contained in:
loveuer
2025-04-27 22:14:21 +08:00
parent 25c76aebf2
commit 4801b3de08
22 changed files with 3021 additions and 3 deletions

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

@ -0,0 +1,10 @@
package opt
type config struct {
Debug bool
Address string
}
var (
Cfg = &config{}
)