10 lines
304 B
Rust
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(())
|
|
}
|