forked from extern/nushell
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * Finish adding the baseline refactors for argument invocation * Finish cleanup and add test * Add missing plugin references
8 lines
163 B
Rust
8 lines
163 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_parse::Parse;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
serve_plugin(&mut Parse::new()?);
|
|
Ok(())
|
|
}
|