9 lines
172 B
Rust
9 lines
172 B
Rust
use anyhow::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
capnpc::CompilerCommand::new()
|
|
.file("./proto/clientserver.capnp")
|
|
.import_path("./proto")
|
|
.run()?;
|
|
Ok(())
|
|
}
|