Files
termix/lib/proto/items.proto
Nikolai Rodionov 2052178ebf
Some checks failed
ci/woodpecker/push/code_tests Pipeline failed
ci/woodpecker/push/pre_commit_test Pipeline failed
Trying to use the prost
2025-11-28 19:18:04 +01:00

19 lines
286 B
Protocol Buffer

syntax = "proto3";
package snazzy.items;
// A snazzy new shirt!
message Shirt {
// Label sizes
enum Size {
SMALL = 0;
MEDIUM = 1;
LARGE = 2;
}
// The base color
string color = 1;
// The size as stated on the label
Size size = 2;
}