Skip to content

Commit

Permalink
feat: implement local record manager
Browse files Browse the repository at this point in the history
  • Loading branch information
aeddi committed Jun 17, 2019
1 parent d0dd821 commit 612bf29
Show file tree
Hide file tree
Showing 5 changed files with 528 additions and 0 deletions.
23 changes: 23 additions & 0 deletions client/react-native/app/bridge/service/entity/local_record.pb.json
@@ -0,0 +1,23 @@
{
"nested": {
"berty": {
"nested": {
"entity": {
"options": {
"go_package": "berty.tech/core/entity"
},
"nested": {
"LocalRecord": {
"fields": {
"contactId": {
"type": "string",
"id": 1
}
}
}
}
}
}
}
}
}
351 changes: 351 additions & 0 deletions core/entity/local_record.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions core/entity/local_record.proto
@@ -0,0 +1,9 @@
syntax = "proto3";

package berty.entity;

option go_package = "berty.tech/core/entity";

message LocalRecord {
string contact_id = 1;
}
3 changes: 3 additions & 0 deletions core/entity/local_record.validate.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 612bf29

Please sign in to comment.