mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 01:05:32 +00:00
9 lines
167 B
Go
9 lines
167 B
Go
package pagemodels
|
|
|
|
import "github.com/pocketbase/pocketbase/core"
|
|
|
|
type IPageCollection interface {
|
|
core.RecordProxy
|
|
Collection(pagename string) *core.Collection
|
|
}
|