15 lines
297 B
Protocol Buffer
15 lines
297 B
Protocol Buffer
syntax = "proto3";
|
|
package test.v1;
|
|
option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg/test/v1";
|
|
|
|
/**
|
|
* Service for handling environments
|
|
*/
|
|
service TestService {
|
|
rpc Ping (PingRequest) returns (PingResponse) {}
|
|
}
|
|
|
|
message PingRequest {}
|
|
|
|
message PingResponse {}
|