Compare commits

..

2 Commits
v1.2.1 ... main

Author SHA1 Message Date
Arnaud (Arhuman) ASSAD b2562f7922 Move email client to pkg directory 2023-10-25 12:06:15 +02:00
Arnaud (Arhuman) ASSAD 6ead85e44c Change method name 2023-10-25 10:58:07 +02:00
2 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ type Service struct {
}
// NewLinkUsecase returns a service to manipulate Link
func NewLinkUsecase(r Repository) *Service {
func NewLinkService(r Repository) *Service {
return &Service{repo: r}
}