mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-02-05 10:45:09 +02:00
12 lines
274 B
Go
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
|
|
}
|