Commit a4e707b4c1821e07529589ce230b87b310cb7888
1 parent
d9a4f5a8
feat: add log component
Showing
1 changed file
with
5 additions
and
0 deletions
Show diff stats
models.proto
... | ... | @@ -4,6 +4,11 @@ option go_package = "../pb;pb"; |
4 | 4 | package models; |
5 | 5 | //import "google/protobuf/empty.proto"; |
6 | 6 | |
7 | +message LogConf { | |
8 | + string typ = 1; | |
9 | + string ucode = 2; | |
10 | +} | |
11 | + | |
7 | 12 | message Account { |
8 | 13 | string phone = 1; // @inject_tag: index:"unique" pri:"1" |
9 | 14 | string password = 2; | ... | ... |