mirror of
https://github.com/nushell/nushell.git
synced 2025-03-24 13:37:32 +01: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 {})
|
||
|
}
|