Files

6 lines
97 B
Go

package gateways
type IPageRepository interface {
Get(name string, data any) ([]byte, error)
}