Files
kratos-bootstrap/config/config_test.go
2024-05-06 10:07:22 +08:00

11 lines
133 B
Go

package config
import "testing"
func TestRegisterConfig(t *testing.T) {
var cfg struct {
Test string
}
RegisterConfig(&cfg)
}