refac: fixed, better, smarter, correct dependency injection

This commit is contained in:
Florian Sylvain
2025-03-29 00:51:01 +01:00
parent d895477b8c
commit a77a5ad314
35 changed files with 169 additions and 144 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
package gateways
type IPageRepository interface {
Get(name string, data interface{}) ([]byte, error)
Get(name string, data any) ([]byte, error)
}