Update directory name to cover the correct package name
Some checks failed
Generate and Release Protos / release (push) Failing after 23s

This commit is contained in:
2026-01-07 13:17:02 +00:00
parent 7e2361015a
commit 2068a4335b
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
package rail_backend.v1;
import "rail_backend/v1/common.proto";
import "rail_backend/v1/schedule_payload.proto";
message IngressMessage {
string correlation_id = 1;
Metadata tracking_data = 2;
oneof payload {
UrlReference url_ref = 5;
SchedulePayload schedule_payload = 6;
}
}
message UrlReference {
string kind = 1;
string url = 2;
}