Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dumindu/3c7a1764d908cd22f960a2a71f1f5e5d to your computer and use it in GitHub Desktop.
Save dumindu/3c7a1764d908cd22f960a2a71f1f5e5d to your computer and use it in GitHub Desktop.
package validator
import (
"gopkg.in/go-playground/validator.v9"
)
func New() *validator.Validate {
validate := validator.New()
validate.SetTagName("form")
return validate
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment