๐Ÿ“ฆ songquanpeng / message-pusher

๐Ÿ“„ validate.go ยท 10 lines
1
2
3
4
5
6
7
8
9
10package common

import "github.com/go-playground/validator/v10"

var Validate *validator.Validate

func init() {
	Validate = validator.New()
}