1
0
Fork 0
golang-github-pocketbase-po.../core/collection_model_base_options.go
Daniel Baumann e28c88ef14
Adding upstream version 0.28.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:57:38 +02:00

11 lines
274 B
Go

package core
var _ optionsValidator = (*collectionBaseOptions)(nil)
// collectionBaseOptions defines the options for the "base" type collection.
type collectionBaseOptions struct {
}
func (o *collectionBaseOptions) validate(cv *collectionValidator) error {
return nil
}