mirror of
https://github.com/danbulant/nushell
synced 2026-05-21 05:18:42 +00:00
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(())
|
|
}
|