Fix sending dates through the protocol

Fixes #253.
This commit is contained in:
Asher
2019-04-04 18:24:21 -05:00
parent 278c59b920
commit e73eb74208
9 changed files with 267 additions and 22 deletions

View File

@@ -40,6 +40,10 @@ message Argument {
message UndefinedValue {}
message DateValue {
string date = 1;
}
oneof msg {
ErrorValue error = 1;
BufferValue buffer = 2;
@@ -52,6 +56,7 @@ message Argument {
double number = 9;
string string = 10;
bool boolean = 11;
DateValue date = 12;
}
}