mirror of
https://github.com/nushell/nushell
synced 2025-01-21 09:34:39 +00:00
076fde16dd
* 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
7 lines
163 B
Rust
7 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(())
|
|
}
|