Merge branch 'jcarr' into devel
This commit is contained in:
commit
73e3cbef06
|
@ -1,3 +1,4 @@
|
|||
*.swp
|
||||
go.mod
|
||||
go.sum
|
||||
*.pb.go
|
||||
|
|
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue