Skip to content

Commit

Permalink
fix: update proto file to match new definition
Browse files Browse the repository at this point in the history
  • Loading branch information
hydra-yse committed Sep 28, 2024
1 parent c3ac500 commit 298738c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proto/sync.proto
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
syntax = "proto3";

option go_package = "github.com/breez/data-sync/proto";
package proto;
package sync;

service Syncer {
rpc SetRecord(SetRecordRequest) returns (SetRecordReply) {}
rpc ListChanges(ListChangesRequest) returns (ListChangesReply) {}
}

message Record {
string id = 1;
int64 version = 2;
uint64 record_index = 1;
float record_version = 2;
bytes data = 3;
}

Expand Down

0 comments on commit 298738c

Please sign in to comment.