mirror of
https://github.com/nushell/nushell.git
synced 2025-02-03 20:19:53 +01:00
8 lines
163 B
Rust
8 lines
163 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_match::Match;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
serve_plugin(&mut Match::new()?);
|
|
Ok(())
|
|
}
|