mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
7 lines
152 B
Rust
7 lines
152 B
Rust
|
use nu_plugin::{serve_plugin, MsgPackSerializer};
|
||
|
use nu_plugin_formats::FromCmds;
|
||
|
|
||
|
fn main() {
|
||
|
serve_plugin(&mut FromCmds, MsgPackSerializer {})
|
||
|
}
|