mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
11 lines
201 B
Go
11 lines
201 B
Go
package validate
|
|
|
|
import (
|
|
"github.com/globalsign/mgo/bson"
|
|
"github.com/go-playground/validator/v10"
|
|
)
|
|
|
|
func MongoID(sl validator.FieldLevel) bool {
|
|
return bson.IsObjectIdHex(sl.Field().String())
|
|
}
|