mirror of
https://github.com/nushell/nushell.git
synced 2025-03-21 11:07:10 +01:00
7 lines
151 B
Rust
7 lines
151 B
Rust
use nu_plugin::{serve_plugin, MsgPackSerializer};
|
|
use nu_plugin_gstat::GStat;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut GStat::new(), MsgPackSerializer {})
|
|
}
|