go-validator

command
v1.1.25 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 17, 2021 License: MIT, MIT Imports: 20 Imported by: 0

README

go-validator

Archived, move to go-validator.

Documentation

Overview

go-validator Generates Go code using a package as a generic template that implements validator. Given the StructName of a Struct type T go-validator will create a new self-contained Go source file and rewrite T's "db" tag of struct field The file is created in the same package and directory as the package that defines T. It has helpful defaults designed for use with go generate.

For example, given this snippet,

running this command

go-validator -type=Pill

in the same directory will create the file pill_validator.go, in package painkiller, containing a definition of helper for validator

Typically this process would be run using go generate, like this:

//go:generate go-validator -type=Pill
//go:generate go-validator -type=Pill --linecomment
//go:generate go-validator -type=Pill --linecomment --with-dao

With no arguments, it processes the package in the current directory. Otherwise, the arguments must trimmedStructName a single directory holding a Go package or a set of Go source files that represent a single Go package.

The -type flag accepts a comma-separated list of types so a single run can generate methods for multiple types. The default flagOutput file is t_string.go, where t is the lower-cased trimmedStructName of the first type listed. It can be overridden with the -flagOutput flag.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL