clean: moved funcs to specific files + GetPage usecase/repo

This commit is contained in:
Florian Sylvain
2023-08-12 20:42:43 +02:00
parent 869fb3f145
commit 1539e06ec8
18 changed files with 190 additions and 136 deletions
+5
View File
@@ -0,0 +1,5 @@
package gateways
type IPageRepository interface {
Get(name string, data interface{}) ([]byte, error)
}