shad-go/gossip/meshpb/protocol.proto

14 lines
241 B
Protocol Buffer
Raw Permalink Normal View History

2023-04-22 08:58:14 +00:00
//go:build !solution
syntax = "proto3";
option go_package = "gitlab.com/slon/shad-go/gossip/meshpb";
2023-04-22 08:58:14 +00:00
2023-04-23 10:19:45 +00:00
// PeerMeta is arbitrary message that is propagated with peer gossip.
2023-04-22 08:58:14 +00:00
message PeerMeta {
string name = 1;
}
service GossipService {
2023-04-23 10:19:45 +00:00
}