mirror of
https://github.com/nushell/nushell.git
synced 2025-01-09 07:48:14 +01: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");
|
||
|
}
|