add session information
This commit is contained in:
parent
e83b6361c1
commit
395597646a
|
@ -45,11 +45,16 @@ message ChatEntry { // `autogenpb:nomute
|
||||||
repeated CodeSnippet Snippets = 8;
|
repeated CodeSnippet Snippets = 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message SessionStats { // `autogenpb:nomutex`
|
||||||
|
string uuid = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message Chat { // `autogenpb:nomutex`
|
message Chat { // `autogenpb:nomutex`
|
||||||
string uuid = 1; // `autogenpb:unique` `autogenpb:sort`
|
string uuid = 1; // `autogenpb:unique` `autogenpb:sort`
|
||||||
google.protobuf.Timestamp ctime = 2;
|
google.protobuf.Timestamp ctime = 2;
|
||||||
string ChatName = 3;
|
string ChatName = 3;
|
||||||
repeated ChatEntry Entries = 4;
|
repeated ChatEntry Entries = 4;
|
||||||
|
repeated SessionStats Session = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Chats { // `autogenpb:marshal` `autogenpb:mutex`
|
message Chats { // `autogenpb:marshal` `autogenpb:mutex`
|
||||||
|
|
Loading…
Reference in New Issue