🎉 start the project

This commit is contained in:
loveuer
2024-03-29 18:05:09 +08:00
commit 96844d25d6
18 changed files with 403 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package opt
type config struct {
Address string `json:"address"`
}
var (
Cfg = &config{}
)
+3
View File
@@ -0,0 +1,3 @@
package opt
const Version = "v0.0.1"