Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
macgeargear committed Jan 6, 2024
1 parent f87e1bc commit cabac9b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/service/pet/pet.service.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ type Service struct {
petClient petproto.PetServiceClient
}

// Adopt implements pet.Service.
func (*Service) Adopt(*dto.AdoptDto) (bool, *dto.ResponseErr) {
panic("unimplemented")
}

func NewService(petClient petproto.PetServiceClient) *Service {
return &Service{
petClient: petClient,
Expand Down

0 comments on commit cabac9b

Please sign in to comment.