change name
     Server -> OverflowApiServer
This commit is contained in:
snoop 2017-06-28 17:55:17 +09:00
parent 74426360bb
commit c5fd1ab387
2 changed files with 14 additions and 1 deletions

13
pom.xml
View File

@ -22,6 +22,19 @@
<protoc-maven-plugin.version>0.5.0</protoc-maven-plugin.version> <protoc-maven-plugin.version>0.5.0</protoc-maven-plugin.version>
</properties> </properties>
<dependencies>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>${grpc.version}</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>${grpc.version}</version>
</dependency>
</dependencies>
<build> <build>
<resources> <resources>
<resource> <resource>

View File

@ -20,7 +20,7 @@ message ServerOutput {
string result = 1; string result = 1;
} }
service Server { service OverflowApiServer {
rpc exec(ServerInput) returns (ServerOutput) {} rpc exec(ServerInput) returns (ServerOutput) {}
} }