mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-18 00:16:37 +08:00
10 lines
143 B
Go
10 lines
143 B
Go
package common
|
|
|
|
import "github.com/go-playground/validator/v10"
|
|
|
|
var Validate *validator.Validate
|
|
|
|
func init() {
|
|
Validate = validator.New()
|
|
}
|