feat: it works
This commit is contained in:
parent
6302dd62d6
commit
778d5ef146
25 changed files with 638 additions and 106 deletions
11
internal/service/service.go
Normal file
11
internal/service/service.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package service
|
||||
|
||||
type Service struct {
|
||||
repo Repository
|
||||
}
|
||||
|
||||
func New(repo Repository) *Service {
|
||||
return &Service{
|
||||
repo: repo,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue