7 lines
137 B
Rust
Raw Normal View History

2025-06-27 02:33:44 +01:00
use nu_plugin::{JsonSerializer, serve_plugin};
use nu_plugin_query::Query;
fn main() {
serve_plugin(&Query {}, JsonSerializer {})
}