diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 00:52:41 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 00:52:41 -0500 |
| commit | af57eec6919c991153a8cd6ee1e9fc0cb2eea394 (patch) | |
| tree | 2b7481efb1a1f763ae3d82add0854fc38738c5c7 /chat.proto | |
| parent | cdcd0fe38e50ef992de8e590fb5c3b0b4992722e (diff) | |
example works
Diffstat (limited to 'chat.proto')
| -rw-r--r-- | chat.proto | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -11,9 +11,14 @@ message Table { repeated Row rows = 2; } +enum Who { + NOONE = 0; + GEMINI = 1; + USER = 2; +} + message Chat { - bool gemini = 1; - bool user = 2; + Who from = 1; string content = 3; Table table = 4; } |
