backend redesign

This commit is contained in:
2026-03-11 18:47:11 -04:00
parent 8ff277c8c6
commit e99ef5d2dd
210 changed files with 12147 additions and 155 deletions

16
relay/build.rs Normal file
View File

@@ -0,0 +1,16 @@
fn main() {
// Use Config to compile all protos together
// Since the proto files don't have package declarations,
// they'll all be generated into a single _.rs file
prost_build::Config::new()
.compile_protos(
&[
"protobuf/ingestor.proto",
"protobuf/market.proto",
"protobuf/ohlc.proto",
"protobuf/tick.proto",
],
&["protobuf/"],
)
.unwrap_or_else(|e| panic!("Failed to compile protos: {}", e));
}