| 123456789101112131415161718192021 |
- syntax = "proto3";
- package grpc.gateway.internal.descriptor.apiconfig;
- option go_package = "github.com/go-kratos/grpc-gateway/v2/internal/descriptor/apiconfig";
- import "google/api/http.proto";
- // GrpcAPIService represents a stripped down version of google.api.Service .
- // Compare to https://github.com/googleapis/googleapis/blob/master/google/api/service.proto
- // The original imports 23 other protobuf files we are not interested in. If a significant
- // subset (>50%) of these start being reproduced in this file we should swap to using the
- // full generated version instead.
- //
- // For the purposes of the gateway generator we only consider a small subset of all
- // available features google supports in their service descriptions. Thanks to backwards
- // compatibility guarantees by protobuf it is safe for us to remove the other fields.
- message GrpcAPIService {
- // Http Rule.
- google.api.Http http = 1;
- }
|