1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-02-05 10:45:09 +02:00
pocketbase/core/collection_model_base_options.go
2024-09-29 21:09:46 +03:00

12 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
}