mirror of
https://github.com/nushell/nushell
synced 2025-01-06 18:29:02 +00:00
ea5bf9db36
* add query json plugin for experimentation * add some error handling * closer but Kind::Array is still horked * unravel the table so the output looks right * clippy * added the ability to use gjson modifiers
6 lines
122 B
Rust
6 lines
122 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_query_json::QueryJson;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut QueryJson::new());
|
|
}
|