mirror of
https://github.com/nushell/nushell.git
synced 2025-04-11 23:08:20 +02:00
7 lines
145 B
Rust
7 lines
145 B
Rust
use nu_plugin::{serve_plugin, JsonSerializer};
|
|
use nu_plugin_gstat::GStat;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut GStat::new(), JsonSerializer {})
|
|
}
|