nushell/src/plugins/nu_plugin_stable_start.rs
Elton Leander Pinto ccd5d69fd1
Bug fix start (#1738)
* fix bug on linux; added start to the stable list

* add to stable and fix clippy lint
2020-05-10 05:28:57 +12:00

10 lines
164 B
Rust

use nu_plugin::serve_plugin;
use nu_plugin_start::Start;
fn main() {
serve_plugin(&mut Start {
filenames: vec![],
application: None,
});
}