mirror of
https://github.com/nushell/nushell
synced 2025-01-15 14:44:14 +00:00
7 lines
167 B
Rust
7 lines
167 B
Rust
fn main() {
|
|
capnpc::CompilerCommand::new()
|
|
.src_prefix("schema")
|
|
.file("schema/value.capnp")
|
|
.run()
|
|
.expect("compiling schema");
|
|
}
|