mirror of
https://github.com/nushell/nushell.git
synced 2025-06-07 18:46:49 +02:00
7 lines
152 B
Rust
7 lines
152 B
Rust
use nu_plugin::{MsgPackSerializer, serve_plugin};
|
|
use nu_plugin_gstat::GStatPlugin;
|
|
|
|
fn main() {
|
|
serve_plugin(&GStatPlugin, MsgPackSerializer {})
|
|
}
|