Update package name

This commit is contained in:
2026-01-06 21:05:31 +00:00
parent c23e80595e
commit 59e405d2c4
4 changed files with 15 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
syntax = "proto3";
package rail.v1;
option go_package = "git.fjla.uk/owlboard/backend-data-contracts";
package rail-backend.v1;
option go_package = "git.fjla.uk/owlboard/generated/go/rail-backend/v1";
message PisReferenceList {
repeated PisMapping entries = 1;
@@ -9,7 +9,9 @@ message PisReferenceList {
message PisMapping {
string code = 1;
string operator = 2;
repeated string stops = 3;
fixed64 stops_xxh4 = 4; // XXH4 Hash for fast lookup of exact match
string toc = 2;
repeated string crsStops = 3;
fixed64 crsHash = 4; // XXH4 Hash for fast lookup of exact match
repeated string tiplocStops = 5;
fixed64 tiplocHash = 6;
}