mirror of
https://github.com/nushell/nushell.git
synced 2025-07-22 08:20:23 +02:00
7 lines
164 B
Rust
7 lines
164 B
Rust
use nu_plugin::{MsgPackSerializer, serve_plugin};
|
|
use nu_plugin_formats::FormatCmdsPlugin;
|
|
|
|
fn main() {
|
|
serve_plugin(&FormatCmdsPlugin, MsgPackSerializer {})
|
|
}
|