Files
b2b/app/repos/productEditingRepo/productEditingRepo.go
2026-04-17 11:46:34 +02:00

11 lines
169 B
Go

package productEditingRepo
type UIProductEditingRepo interface {
}
type ProductEditingRepo struct{}
func New() UIProductEditingRepo {
return &ProductEditingRepo{}
}