mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 01:06: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()
|
|
}
|