feat: refactor.

This commit is contained in:
tx7do
2024-05-06 08:23:05 +08:00
parent 8e16b4309c
commit 601a7e5545
8 changed files with 63 additions and 1063 deletions

10
config_test.go Normal file
View File

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