Add automation
Some checks failed
Generate and Release Protos / release (push) Failing after 43s

This commit is contained in:
Fred Boniface
2025-12-16 21:42:16 +00:00
commit 9ebf62e2c6
8 changed files with 355 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
syntax = "proto3";
package rail.v1;
option go_package = "git.fjla.uk/owlboard/backend-data-contracts";
message PisReferenceList {
repeated PisMapping entries = 1;
}
message PisMapping {
string code = 1;
string operator = 2;
repeated string stops = 3;
fixed64 stops_xxh4 = 4; // XXH4 Hash for fast lookup of exact match
}