mirror of
https://github.com/nushell/nushell.git
synced 2025-05-24 08:31:17 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
use nu_plugin_gstat::GStat;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut GStat::new(), CapnpSerializer {})
|
|
}
|