Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Carr 73e3cbef06 Merge branch 'jcarr' into devel 2025-08-21 14:47:53 -05:00
Jeff Carr 0228ce6afa more stuff 2025-08-21 12:30:12 -05:00
2 changed files with 25 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.swp *.swp
go.mod go.mod
go.sum go.sum
*.pb.go

24
chat.proto Normal file
View File

@ -0,0 +1,24 @@
syntax = "proto3";
package main;
message Row {
repeated string fields = 1;
}
message Table {
int32 columns = 1;
repeated Row rows = 2;
}
message Chat {
bool gemini = 1;
bool user = 2;
string content = 3;
repeated string mountpoints = 4;
}
message Chats { // `autogenpb:marshal` `autogenpb:mutex`
string uuid = 1; // `autogenpb:uuid:9fd31f10-c25d-4d66-bc8d-5f6eb7c79057`
string version = 2; // `autogenpb:version:v0.0.1`
repeated Chat Chats = 3; // THIS MUST BE Chat and then Chats
}