mirror of
https://github.com/nushell/nushell.git
synced 2025-07-13 04:46:17 +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 {})
|
|
}
|