- proto: lakehouse.proto with CatalogService, QueryService, StorageService, AiService - proto crate: tonic-build codegen from proto definitions - catalogd: gRPC CatalogService implementation - gateway: dual HTTP (:3100) + gRPC (:3101) servers - gateway: OpenTelemetry tracing with stdout exporter - gateway: API key auth middleware (toggleable) - shared: TOML config system with typed structs and defaults - lakehouse.toml config file - ADR-006 and ADR-007 documented Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 lines
132 B
Rust
5 lines
132 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
tonic_build::compile_protos("../../proto/lakehouse.proto")?;
|
|
Ok(())
|
|
}
|