2023-04-22 08:58:14 +00:00
|
|
|
//go:build !solution
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-10-02 19:32:41 +00:00
|
|
|
option go_package = "gitlab.com/manytask/itmo-go/private/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
|
|
|
}
|