// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 fn main() -> Result<(), Box> { #[cfg(feature = "dockerproto")] tonic_build::compile_protos("/app/proto/demo.proto")?; #[cfg(not(feature = "dockerproto"))] tonic_build::compile_protos("../../pb/demo.proto")?; Ok(()) }