Skip to content

Commit

Permalink
fix: pet service interface
Browse files Browse the repository at this point in the history
  • Loading branch information
macgeargear committed Jan 13, 2024
1 parent 3b7c25a commit ee68bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/service/pet/pet.service.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

type Service interface {
FindAll() ([]*dto.PetResponse, *dto.ResponseErr)
FindAll(*dto.FindAllPetRequest) (*dto.FindAllPetResponse, *dto.ResponseErr)
FindOne(string) (*dto.PetResponse, *dto.ResponseErr)
Create(*dto.CreatePetRequest) (*dto.PetResponse, *dto.ResponseErr)
Update(string, *dto.UpdatePetRequest) (*dto.PetResponse, *dto.ResponseErr)
Expand Down

0 comments on commit ee68bf4

Please sign in to comment.