Initial version

Project structure, api, discovery service, docker.
This commit is contained in:
2023-12-06 08:29:05 +03:00
commit 7864272baa
19 changed files with 896 additions and 0 deletions

12
api/server.proto Normal file
View File

@@ -0,0 +1,12 @@
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;
}