Skip to content

Commit

Permalink
fix golint issues (zeromicro#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevwan authored Mar 12, 2021
1 parent dda7666 commit 155e606
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions tools/goctl/model/mongo/generate/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,22 @@ var templates = map[string]string{
errTemplateFile: template.Error,
}

// Category returns the mongo category.
func Category() string {
return category
}

// Clean cleans the mongo templates.
func Clean() error {
return util.Clean(category)
}

// Templates initializes the mongo templates.
func Templates(_ *cli.Context) error {
return util.InitTemplates(category, templates)
}

// RevertTemplate reverts the given template.
func RevertTemplate(name string) error {
content, ok := templates[name]
if !ok {
Expand All @@ -40,6 +44,7 @@ func RevertTemplate(name string) error {
return util.CreateTemplate(category, name, content)
}

// Update cleans and updates the templates.
func Update() error {
err := Clean()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion tools/goctl/model/mongo/mongo.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/urfave/cli"
)

// Command provides the entry for goctl
// Action provides the entry for goctl mongo code generation.
func Action(ctx *cli.Context) error {
tp := ctx.StringSlice("type")
c := ctx.Bool("cache")
Expand Down
1 change: 1 addition & 0 deletions tools/goctl/model/mongo/template/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ func (m *default{{.Type}}Model) Delete(ctx context.Context, id string) error {
}
`

// Error provides the default template for error definition in mongo code generation.
var Error = `
package model
Expand Down

0 comments on commit 155e606

Please sign in to comment.