This commit is contained in:
nquidox 2026-02-23 20:02:17 +03:00
parent 781d525d72
commit 8c38107ff2
5 changed files with 86 additions and 0 deletions

11
internal/merch/service.go Normal file
View file

@ -0,0 +1,11 @@
package merch
type service struct {
repo Repository
}
func newService(repo Repository) *service {
return &service{
repo: repo,
}
}