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