mirror of
https://github.com/nushell/nushell
synced 2025-01-16 07:04:09 +00:00
97f3671e2c
* first step of making selector * wip * wip tests working * probably good enough for a first pass * oops, missed something. * and something else... * grrrr version errors
6 lines
118 B
Rust
6 lines
118 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_selector::Selector;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut Selector::new());
|
|
}
|