Added protobuf definition for records. Added Makefile to easily compile protobufs and run tests.

This commit is contained in:
Mariano Uvalle 2021-07-29 23:25:07 -05:00
parent 9c9c3b4697
commit a09c98c243
5 changed files with 245 additions and 1 deletions

10
api/v1/log.proto Normal file
View file

@ -0,0 +1,10 @@
syntax = 'proto3';
package log.v1;
option go_package = "github.com/AYM1607/api/log_v1";
message Record {
bytes value = 1;
uint64 offset = 2;
}