This repository has been archived on 2024-02-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
astontest/api/server.proto
derfenix 7864272baa Initial version
Project structure, api, discovery service, docker.
2023-12-06 08:32:01 +03:00

13 lines
219 B
Protocol Buffer

syntax = "proto3";
package astontest;
option go_package = "git.derfenix.pro/fenix/astontest/api";
service AstonTest {
rpc Ping(stream PingPong) returns (stream PingPong);
}
message PingPong {
string value = 1;
}