(ctx context.Context, in *PokemonRequest, opts ...grpc.CallOption)
| 32 | // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. |
| 33 | type PokedexClient interface { |
| 34 | Create(ctx context.Context, in *PokemonRequest, opts ...grpc.CallOption) (*Pokemon, error) |
| 35 | Read(ctx context.Context, in *PokemonFilter, opts ...grpc.CallOption) (*PokemonListResponse, error) |
| 36 | ReadOne(ctx context.Context, in *PokemonID, opts ...grpc.CallOption) (*Pokemon, error) |
| 37 | Update(ctx context.Context, in *PokemonUpdateRequest, opts ...grpc.CallOption) (*Pokemon, error) |
no outgoing calls
no test coverage detected