Change method name

This commit is contained in:
Arnaud (Arhuman) ASSAD 2023-10-25 10:58:07 +02:00
parent ce822d0c16
commit 6ead85e44c
1 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}
}