// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 fn main() -> Result<(), Box> { // Only compile proto files if grpc feature is enabled #[cfg(feature = "grpc")] { tonic_build::compile_protos("proto/velo.proto")?; } Ok(()) }