syntax = "proto3"; package grpc; option go_package = "internal/pkg/grpc"; service monitoring { rpc ReactorPingHandler(stream ReactorPing) returns (ReactorAck); } message ReactorAck { int32 id = 1; } message ReactorPing { int32 id = 1; }