nu_plugin_query 0.113.0

A Nushell plugin to query JSON, XML, and various web data
Documentation
1
2
3
4
5
6
use nu_plugin::{JsonSerializer, serve_plugin};
use nu_plugin_query::Query;

fn main() {
    serve_plugin(&Query {}, JsonSerializer {})
}