10 lines
138 B
Go
10 lines
138 B
Go
package config
|
|
|
|
import (
|
|
"github.com/go-playground/validator/v10"
|
|
)
|
|
|
|
func NewValidator() *validator.Validate {
|
|
return validator.New()
|
|
}
|