mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
10 lines
155 B
Go
10 lines
155 B
Go
package validator
|
|
|
|
import "github.com/go-playground/validator/v10"
|
|
|
|
var Validate *validator.Validate
|
|
|
|
func InitValidator() {
|
|
Validate = validator.New()
|
|
}
|