12 lines
212 B
Go
12 lines
212 B
Go
package validate
|
|
|
|
import "github.com/mcuadros/go-defaults"
|
|
|
|
type CreateTypeParam struct {
|
|
Name string `json:"name" validate:"required,max=20"`
|
|
}
|
|
|
|
func (p *CreateTypeParam) Default() {
|
|
defaults.SetDefaults(p)
|
|
}
|