This is an automated email from the ASF dual-hosted git repository.

zhongxjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-kubernetes.git


The following commit(s) were added to refs/heads/master by this push:
     new fc00eff7 [chore] Modify the directory name (#396)
fc00eff7 is described below

commit fc00eff75a679c269250031304279b5b921a9e1e
Author: mfordjody <[email protected]>
AuthorDate: Sat Sep 28 08:57:07 2024 +0800

    [chore] Modify the directory name (#396)
---
 {template => templates}/go/README.md                                      | 0
 {template => templates}/go/common/.gitignore                              | 0
 {template => templates}/go/common/api/api.pb.go                           | 0
 {template => templates}/go/common/api/api.proto                           | 0
 {template => templates}/go/common/api/api_triple.pb.go                    | 0
 {template => templates}/go/common/cmd/app.go                              | 0
 {template => templates}/go/common/conf/dubbogo.yaml                       | 0
 {template => templates}/go/common/go.mod                                  | 0
 {template => templates}/go/common/go.sum                                  | 0
 {template => templates}/go/common/pkg/service/service.go                  | 0
 {template => templates}/java/README.md                                    | 0
 {template => templates}/java/common/.gitignore                            | 0
 {template => templates}/java/common/pom.xml                               | 0
 .../java/common/src/main/java/com/example/demo/DemoApplication.java       | 0
 .../common/src/main/java/com/example/demo/demos/web/BasicController.java  | 0
 .../src/main/java/com/example/demo/demos/web/PathVariableController.java  | 0
 .../java/common/src/main/java/com/example/demo/demos/web/User.java        | 0
 .../java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java | 0
 .../common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java    | 0
 .../src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java     | 0
 {template => templates}/java/common/src/main/resources/application.yml    | 0
 {template => templates}/java/common/src/main/resources/log4j.properties   | 0
 {template => templates}/java/common/src/main/resources/static/index.html  | 0
 .../java/common/src/test/java/com/example/demo/DemoApplicationTests.java  | 0
 {template => templates}/manifest.yaml                                     | 0
 25 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/template/go/README.md b/templates/go/README.md
similarity index 100%
rename from template/go/README.md
rename to templates/go/README.md
diff --git a/template/go/common/.gitignore b/templates/go/common/.gitignore
similarity index 100%
rename from template/go/common/.gitignore
rename to templates/go/common/.gitignore
diff --git a/template/go/common/api/api.pb.go 
b/templates/go/common/api/api.pb.go
similarity index 100%
rename from template/go/common/api/api.pb.go
rename to templates/go/common/api/api.pb.go
diff --git a/template/go/common/api/api.proto 
b/templates/go/common/api/api.proto
similarity index 100%
rename from template/go/common/api/api.proto
rename to templates/go/common/api/api.proto
diff --git a/template/go/common/api/api_triple.pb.go 
b/templates/go/common/api/api_triple.pb.go
similarity index 100%
rename from template/go/common/api/api_triple.pb.go
rename to templates/go/common/api/api_triple.pb.go
diff --git a/template/go/common/cmd/app.go b/templates/go/common/cmd/app.go
similarity index 100%
rename from template/go/common/cmd/app.go
rename to templates/go/common/cmd/app.go
diff --git a/template/go/common/conf/dubbogo.yaml 
b/templates/go/common/conf/dubbogo.yaml
similarity index 100%
rename from template/go/common/conf/dubbogo.yaml
rename to templates/go/common/conf/dubbogo.yaml
diff --git a/template/go/common/go.mod b/templates/go/common/go.mod
similarity index 100%
rename from template/go/common/go.mod
rename to templates/go/common/go.mod
diff --git a/template/go/common/go.sum b/templates/go/common/go.sum
similarity index 100%
rename from template/go/common/go.sum
rename to templates/go/common/go.sum
diff --git a/template/go/common/pkg/service/service.go 
b/templates/go/common/pkg/service/service.go
similarity index 100%
rename from template/go/common/pkg/service/service.go
rename to templates/go/common/pkg/service/service.go
diff --git a/template/java/README.md b/templates/java/README.md
similarity index 100%
rename from template/java/README.md
rename to templates/java/README.md
diff --git a/template/java/common/.gitignore b/templates/java/common/.gitignore
similarity index 100%
rename from template/java/common/.gitignore
rename to templates/java/common/.gitignore
diff --git a/template/java/common/pom.xml b/templates/java/common/pom.xml
similarity index 100%
rename from template/java/common/pom.xml
rename to templates/java/common/pom.xml
diff --git 
a/template/java/common/src/main/java/com/example/demo/DemoApplication.java 
b/templates/java/common/src/main/java/com/example/demo/DemoApplication.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/DemoApplication.java
rename to 
templates/java/common/src/main/java/com/example/demo/DemoApplication.java
diff --git 
a/template/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
 
b/templates/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
rename to 
templates/java/common/src/main/java/com/example/demo/demos/web/BasicController.java
diff --git 
a/template/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
 
b/templates/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
rename to 
templates/java/common/src/main/java/com/example/demo/demos/web/PathVariableController.java
diff --git 
a/template/java/common/src/main/java/com/example/demo/demos/web/User.java 
b/templates/java/common/src/main/java/com/example/demo/demos/web/User.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/demos/web/User.java
rename to 
templates/java/common/src/main/java/com/example/demo/demos/web/User.java
diff --git 
a/template/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
 
b/templates/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
rename to 
templates/java/common/src/main/java/com/example/demo/dubbo/api/DemoService.java
diff --git 
a/template/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
 
b/templates/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
rename to 
templates/java/common/src/main/java/com/example/demo/dubbo/consumer/Consumer.java
diff --git 
a/template/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
 
b/templates/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
similarity index 100%
rename from 
template/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
rename to 
templates/java/common/src/main/java/com/example/demo/dubbo/service/DemoServiceImpl.java
diff --git a/template/java/common/src/main/resources/application.yml 
b/templates/java/common/src/main/resources/application.yml
similarity index 100%
rename from template/java/common/src/main/resources/application.yml
rename to templates/java/common/src/main/resources/application.yml
diff --git a/template/java/common/src/main/resources/log4j.properties 
b/templates/java/common/src/main/resources/log4j.properties
similarity index 100%
rename from template/java/common/src/main/resources/log4j.properties
rename to templates/java/common/src/main/resources/log4j.properties
diff --git a/template/java/common/src/main/resources/static/index.html 
b/templates/java/common/src/main/resources/static/index.html
similarity index 100%
rename from template/java/common/src/main/resources/static/index.html
rename to templates/java/common/src/main/resources/static/index.html
diff --git 
a/template/java/common/src/test/java/com/example/demo/DemoApplicationTests.java 
b/templates/java/common/src/test/java/com/example/demo/DemoApplicationTests.java
similarity index 100%
rename from 
template/java/common/src/test/java/com/example/demo/DemoApplicationTests.java
rename to 
templates/java/common/src/test/java/com/example/demo/DemoApplicationTests.java
diff --git a/template/manifest.yaml b/templates/manifest.yaml
similarity index 100%
rename from template/manifest.yaml
rename to templates/manifest.yaml

Reply via email to