Added The protobufs file and its java representation
Those protobufs are representing the messages that the registry will use when communicating with the bulletin-board D:/Work/Wombat Working/voter-registry/comment-info.txtvote-registry
parent
a12685d757
commit
25eefc4b16
|
@ -1 +1,3 @@
|
||||||
/bin/
|
/bin/
|
||||||
|
/protoc.exe
|
||||||
|
/comment-info.txt
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,16 @@
|
||||||
|
|
||||||
|
|
||||||
|
message Tag {
|
||||||
|
required string content = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message BasicMessage {
|
||||||
|
repeated Tag tag = 1;
|
||||||
|
optional bytes data = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message BulletinBoardMessage {
|
||||||
|
repeated Tag tag = 1;
|
||||||
|
required BasicMessage basicMessage = 2;
|
||||||
|
optional bytes signatures = 3;
|
||||||
|
}
|
Loading…
Reference in New Issue