nushell/crates/nu_plugin_fetch/src/main.rs

7 lines
108 B
Rust
Raw Normal View History

use nu_plugin::serve_plugin;
use nu_plugin_fetch::Fetch;
2019-09-03 06:04:46 +00:00
2019-12-07 03:46:05 +00:00
fn main() {
serve_plugin(&mut Fetch::new())
2019-09-03 06:04:46 +00:00
}