mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 20:38:40 +00:00
6 lines
149 B
Rust
6 lines
149 B
Rust
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
use nu_plugin_example::Example;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut Example {}, CapnpSerializer {})
|
|
}
|