actually test http

This commit is contained in:
Jeff Carr 2025-09-22 08:48:06 -05:00
parent 0ccf2c09a4
commit 3a13970536
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ message Basket { // `autogenpb:nomutex`
repeated Apple stacks = 6;
}
// "Fruit" must exist. you can put anything in it
message Fruit {
message Fruit { // `autogenpb:http`
string brand = 1; // `autogenpb:unique` `autogenpb:sort`
Apple apples = 2;
repeated Pear pears = 3;
@ -68,7 +68,7 @@ message Fruit {
}
// "Fruits" MUST EXIST and start exactly this way
// It must be "Fruit" + 's' and must match the name of this file: "fruit.proto"
message Fruits { // `autogenpb:marshal` `autogenpb:mutex` `autogenpb:gui`
message Fruits { // `autogenpb:marshal` `autogenpb:mutex` `autogenpb:gui` `autogenpb:http`
string uuid = 1; // `autogenpb:uuid:be926ad9-f07f-484c-adf2-d96eeabf3079`
string version = 2; // `autogenpb:version:v0.0.1`
repeated Fruit Fruits = 3; // THIS MUST BE "Fruit" and then "Fruit" + "s"