mirror of
https://github.com/nushell/nushell.git
synced 2025-08-08 01:24:43 +02:00
7 lines
137 B
Rust
7 lines
137 B
Rust
use nu_plugin::{JsonSerializer, serve_plugin};
|
|
use nu_plugin_query::Query;
|
|
|
|
fn main() {
|
|
serve_plugin(&Query {}, JsonSerializer {})
|
|
}
|