mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-06-16 03:49:08 -04:00
11 lines
189 B
Go
11 lines
189 B
Go
package notification
|
|
|
|
import (
|
|
"github.com/go-playground/validator/v10"
|
|
)
|
|
|
|
var validate = validator.New(
|
|
validator.WithPrivateFieldValidation(),
|
|
validator.WithRequiredStructEnabled(),
|
|
)
|