1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-03-17 21:07:54 +02:00

stype:gen_go_errors (#2026)

* Update errors.go

* Update errors.go
This commit is contained in:
songzhibin97 2022-05-22 09:45:16 +08:00 committed by GitHub
parent b49b7c6ca8
commit c1dbc2dbd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,8 +47,7 @@ func generateFileContent(gen *protogen.Plugin, file *protogen.File, g *protogen.
g.P()
index := 0
for _, enum := range file.Enums {
skip := genErrorsReason(gen, file, g, enum)
if !skip {
if !genErrorsReason(gen, file, g, enum) {
index++
}
}
@ -108,8 +107,7 @@ func genErrorsReason(gen *protogen.Plugin, file *protogen.File, g *protogen.Gene
func case2Camel(name string) string {
if !strings.Contains(name, "_") {
upperName := strings.ToUpper(name)
if upperName == name {
if name == strings.ToUpper(name) {
name = strings.ToLower(name)
}
return enCases.String(name)