fix golint issues (#561)

master
Kevin Wan 4 years ago committed by GitHub
parent dda7666097
commit 155e6061cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,18 +19,22 @@ var templates = map[string]string{
errTemplateFile: template.Error, errTemplateFile: template.Error,
} }
// Category returns the mongo category.
func Category() string { func Category() string {
return category return category
} }
// Clean cleans the mongo templates.
func Clean() error { func Clean() error {
return util.Clean(category) return util.Clean(category)
} }
// Templates initializes the mongo templates.
func Templates(_ *cli.Context) error { func Templates(_ *cli.Context) error {
return util.InitTemplates(category, templates) return util.InitTemplates(category, templates)
} }
// RevertTemplate reverts the given template.
func RevertTemplate(name string) error { func RevertTemplate(name string) error {
content, ok := templates[name] content, ok := templates[name]
if !ok { if !ok {
@ -40,6 +44,7 @@ func RevertTemplate(name string) error {
return util.CreateTemplate(category, name, content) return util.CreateTemplate(category, name, content)
} }
// Update cleans and updates the templates.
func Update() error { func Update() error {
err := Clean() err := Clean()
if err != nil { if err != nil {

@ -10,7 +10,7 @@ import (
"github.com/urfave/cli" "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 { func Action(ctx *cli.Context) error {
tp := ctx.StringSlice("type") tp := ctx.StringSlice("type")
c := ctx.Bool("cache") c := ctx.Bool("cache")

@ -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 = ` var Error = `
package model package model

Loading…
Cancel
Save