mirror of
https://github.com/nushell/nushell
synced 2025-01-09 03:39:03 +00:00
4d7dd23779
* json encoder * thread to pass messages * description for example
6 lines
147 B
Rust
6 lines
147 B
Rust
use nu_plugin::{serve_plugin, CapnpSerializer};
|
|
use nu_plugin_gstat::GStat;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut GStat::new(), CapnpSerializer {})
|
|
}
|