feat: setup editable product struct

This commit is contained in:
Daniel Goc
2026-04-17 11:46:34 +02:00
parent 931840c243
commit 7731c2f126
6 changed files with 152 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package productEditingRepo
type UIProductEditingRepo interface {
}
type ProductEditingRepo struct{}
func New() UIProductEditingRepo {
return &ProductEditingRepo{}
}