summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/testdata/php_namespace/service.proto
blob: a3bfa3c0f3fc4383f42c70b5e7204398c5964c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package testPhpNamespace;

option php_namespace = "Test\\CustomNamespace";

service Service {
    rpc SimpleMethod (SimpleMessage) returns (SimpleMessage) {
    }
}

message SimpleMessage {
    int32 id = 1;
    string name = 2;
}