sgx-daemon/build.rs
ghe0 95a405e44b
switch license to Apache2.0
- switch LICENSE file from GPLv2 to Apache-2.0
- add SPDX HEADER to all files
2025-06-14 03:57:18 +03:00

10 lines
304 B
Rust

// SPDX-License-Identifier: Apache-2.0
fn main() -> Result<(), Box<dyn std::error::Error>> {
// tonic_build::configure()
// .build_server(true)
// .compile_protos(&["daemon.proto"], &["proto"])
// .unwrap_or_else(|e| panic!("Failed to compile protos {:?}", e));
Ok(())
}