2025-01-12 06:13:42 -06:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
// this file is wrong and will give you errors
|
|
|
|
|
|
|
|
package main;
|
|
|
|
|
|
|
|
// "Fruit" must exist. you can put anything in it
|
|
|
|
message Bad {
|
|
|
|
string something = 1;
|
|
|
|
}
|
|
|
|
|
2025-01-12 06:28:12 -06:00
|
|
|
message Badss {
|
2025-01-12 06:13:42 -06:00
|
|
|
string uuid = 1; // `autogenpb:uuid:be926ad9-f07f-484c-adf2-d96eeabf3079`
|
2025-01-12 06:28:12 -06:00
|
|
|
string versions = 2; // `autogenpb:version:v0.0.1`
|
|
|
|
repeated Bad Badss = 3;
|
2025-01-12 06:13:42 -06:00
|
|
|
}
|