mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
6 lines
97 B
Go
6 lines
97 B
Go
package gateways
|
|
|
|
type IPageRepository interface {
|
|
Get(name string, data any) ([]byte, error)
|
|
}
|