Compare commits

..

No commits in common. "main" and "v1.2.1" have entirely different histories.
main ... v1.2.1

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 NewLinkService(r Repository) *Service {
func NewLinkUsecase(r Repository) *Service {
return &Service{repo: r}
}