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