Bug fix start (#1738)

* fix bug on linux; added start to the stable list

* add to stable and fix clippy lint
This commit is contained in:
Elton Leander Pinto
2020-05-09 13:28:57 -04:00
committed by GitHub
parent 55374ee54f
commit ccd5d69fd1
4 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,9 @@
use nu_plugin::serve_plugin;
use nu_plugin_start::Start;
fn main() {
serve_plugin(&mut Start {
filenames: vec![],
application: None,
});
}