added ImageID and LinkRewrite

This commit is contained in:
Daniel Goc
2026-03-20 09:31:08 +01:00
parent 1ea50af96a
commit 884e15bb8a
6 changed files with 129 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
package categoriesRepo
type UICategoriesRepo interface {
}
type CategoriesRepo struct{}
func New() UICategoriesRepo {
return &CategoriesRepo{}
}