Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/utils/validator/announcement/forms.go
2017-08-03 03:38:07 +02:00

8 lignes
280 o
Go

package announcementValidator
// CreateForm is a struct to validate the anouncement before adding to db
type CreateForm struct {
ID uint `validate:"-"`
Message string `validate:"required,min=5" form:"message"`
Delay int `validate:"omitempty,min=1" form:"delay"`
}