|
|
@@ -0,0 +1,13 @@
|
|
|
+package domain_gateway
|
|
|
+
|
|
|
+import (
|
|
|
+ "git.sxidc.com/go-framework/baize/convenient/gwtools"
|
|
|
+ "git.sxidc.com/go-framework/baize/framework/gateway"
|
|
|
+)
|
|
|
+
|
|
|
+func configurationGatewayAPI(baseUrl string, builder *gateway.Builder) {
|
|
|
+ gwtools.CRUD(builder, &gwtools.CRUDParams{
|
|
|
+ ServiceVersionedUrl: baseUrl,
|
|
|
+ DomainCamelName: "Configuration",
|
|
|
+ }, gwtools.WithCRUDDisableUpdate())
|
|
|
+}
|