mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 19:17:44 +02:00
add query json plugin for experimentation (#3327)
* 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
This commit is contained in:
6
src/plugins/nu_plugin_extra_query_json.rs
Normal file
6
src/plugins/nu_plugin_extra_query_json.rs
Normal file
@ -0,0 +1,6 @@
|
||||
use nu_plugin::serve_plugin;
|
||||
use nu_plugin_query_json::QueryJson;
|
||||
|
||||
fn main() {
|
||||
serve_plugin(&mut QueryJson::new());
|
||||
}
|
Reference in New Issue
Block a user