feat: config.

This commit is contained in:
Bobo
2025-06-02 15:12:30 +08:00
parent f7166c40b0
commit 13aa5042b4
12 changed files with 37 additions and 1306 deletions

12
bootstrap/config_test.go Normal file
View File

@@ -0,0 +1,12 @@
package bootstrap
import (
"testing"
)
func TestRegisterConfig(t *testing.T) {
var cfg struct {
Test string
}
RegisterConfig(&cfg)
}