You've already forked pocketbase
mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-11-24 15:14:30 +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
|
||
|
|
}
|