Regenerate (#17389)

This commit is contained in:
Ween Jiann
2023-12-13 22:17:15 +08:00
committed by GitHub
parent 56e2c49e07
commit b7f31ddda4
9 changed files with 91 additions and 6 deletions

View File

@@ -69,7 +69,7 @@ type PetAPIServicer interface {
AddPet(context.Context, Pet) (ImplResponse, error)
DeletePet(context.Context, int64, string) (ImplResponse, error)
FilterPetsByCategory(context.Context, Gender, Species, []Species) (ImplResponse, error)
FindPetsByStatus(context.Context, []string) (ImplResponse, error)
FindPetsByStatus(context.Context, []string, string, string) (ImplResponse, error)
// Deprecated
FindPetsByTags(context.Context, []string, time.Time, time.Time) (ImplResponse, error)
GetPetById(context.Context, int64) (ImplResponse, error)