command
Version:
v1.3.0
Opens a new window with list of versions in this module.
Published: Feb 28, 2026
License: MIT
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
validator-gen
参数校验插件生成后的 pb/validator.go 文件代码如下:
package pb
import (
"github.com/go-playground/validator/v10"
)
var validate = validator.New()
生成后的 validator_req.go 文件如下:
package pb
// Validate req validator.
func (r *HelloRequest) Validate() error {
return validate.Struct(r)
}
Documentation
¶
There is no documentation for this package.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.