Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
命令
kratos new # 参数 -m / --mod bool类型
examples
kratos new app/order/service --nomod kratos new app/user --nomod . ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── api │ └── helloworld │ └── v1 │ ├── error_reason.pb.go │ ├── error_reason.proto │ ├── greeter.pb.go │ ├── greeter.proto │ ├── greeter_grpc.pb.go │ └── greeter_http.pb.go ├── app │ ├── order │ │ └── service │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── cmd │ │ │ └── service │ │ │ ├── main.go │ │ │ ├── wire.go │ │ │ └── wire_gen.go │ │ ├── configs │ │ │ └── config.yaml │ │ ├── internal │ │ │ ├── biz │ │ │ │ ├── biz.go │ │ │ │ └── greeter.go │ │ │ ├── conf │ │ │ │ ├── conf.pb.go │ │ │ │ └── conf.proto │ │ │ ├── data │ │ │ │ ├── data.go │ │ │ │ └── greeter.go │ │ │ ├── server │ │ │ │ ├── grpc.go │ │ │ │ ├── http.go │ │ │ │ └── server.go │ │ │ └── service │ │ │ ├── greeter.go │ │ │ └── service.go │ │ └── openapi.yaml │ └── user │ ├── Dockerfile │ ├── Makefile │ ├── cmd │ │ └── user │ │ ├── main.go │ │ ├── wire.go │ │ └── wire_gen.go │ ├── configs │ │ └── config.yaml │ ├── internal │ │ ├── biz │ │ │ ├── biz.go │ │ │ └── greeter.go │ │ ├── conf │ │ │ ├── conf.pb.go │ │ │ └── conf.proto │ │ ├── data │ │ │ ├── data.go │ │ │ └── greeter.go │ │ ├── server │ │ │ ├── grpc.go │ │ │ ├── http.go │ │ │ └── server.go │ │ └── service │ │ ├── greeter.go │ │ └── service.go │ └── openapi.yaml ├── cmd │ └── hello │ ├── main.go │ ├── wire.go │ └── wire_gen.go ├── configs │ └── config.yaml ├── go.mod ├── go.sum ├── internal │ ├── biz │ │ ├── README.md │ │ ├── biz.go │ │ └── greeter.go │ ├── conf │ │ ├── conf.pb.go │ │ └── conf.proto │ ├── data │ │ ├── README.md │ │ ├── data.go │ │ └── greeter.go │ ├── server │ │ ├── grpc.go │ │ ├── http.go │ │ └── server.go │ └── service │ ├── README.md │ ├── greeter.go │ └── service.go ├── openapi.yaml └── third_party ├── README.md ├── errors │ └── errors.proto ├── google │ ├── api │ │ ├── annotations.proto │ │ ├── client.proto │ │ ├── field_behavior.proto │ │ ├── http.proto │ │ └── httpbody.proto │ └── protobuf │ └── descriptor.proto └── validate ├── README.md └── validate.prot