Files
kratos-bootstrap/config_test.go
2024-05-06 08:23:05 +08:00

11 lines
136 B
Go

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