8 lines
174 B
Rust
8 lines
174 B
Rust
fn main() {
|
|
capnpc::CompilerCommand::new()
|
|
.file("bot.capnp")
|
|
.file("user.capnp")
|
|
.run()
|
|
.expect("couldn't compile capnproto schemas");
|
|
}
|