7 lines
142 B
Rust
7 lines
142 B
Rust
|
|
fn main() {
|
||
|
|
capnpc::CompilerCommand::new()
|
||
|
|
.file("schema/memory.capnp")
|
||
|
|
.run()
|
||
|
|
.expect("capnp compile failed");
|
||
|
|
}
|