summaryrefslogtreecommitdiff
path: root/chat.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-24 08:55:12 -0500
committerJeff Carr <[email protected]>2025-08-24 08:55:12 -0500
commit395597646ac456b4de626450d899a6139b4c780e (patch)
tree791545036943c2fe4759f7657d7584800d59ecfe /chat.proto
parente83b6361c1428f6ab19803f3f689f11ce46e1318 (diff)
add session informationv0.0.3
Diffstat (limited to 'chat.proto')
-rw-r--r--chat.proto5
1 files changed, 5 insertions, 0 deletions
diff --git a/chat.proto b/chat.proto
index 4ac1da6..cfe6995 100644
--- a/chat.proto
+++ b/chat.proto
@@ -45,11 +45,16 @@ message ChatEntry { // `autogenpb:nomute
repeated CodeSnippet Snippets = 8;
}
+message SessionStats { // `autogenpb:nomutex`
+ string uuid = 1;
+}
+
message Chat { // `autogenpb:nomutex`
string uuid = 1; // `autogenpb:unique` `autogenpb:sort`
google.protobuf.Timestamp ctime = 2;
string ChatName = 3;
repeated ChatEntry Entries = 4;
+ repeated SessionStats Session = 5;
}
message Chats { // `autogenpb:marshal` `autogenpb:mutex`