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