nushell/crates/nu_plugin_match/src/main.rs

8 lines
163 B
Rust
Raw Normal View History

use nu_plugin::serve_plugin;
use nu_plugin_match::Match;
2019-10-02 18:56:28 +00:00
2020-01-01 20:45:32 +00:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
serve_plugin(&mut Match::new()?);
Ok(())
2019-10-02 18:56:28 +00:00
}