diff --git a/src/app/service/pet/pet.service.go b/src/app/service/pet/pet.service.go index e68aef5..7798ad0 100644 --- a/src/app/service/pet/pet.service.go +++ b/src/app/service/pet/pet.service.go @@ -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,