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; }