forked from extern/nushell
* Manifests check. Ignore doctests for now. * We continue with refactorings towards the separation of concerns between crates. `nu_plugin_inc` and `nu_plugin_str` common test helpers usage has been refactored into `nu-plugin` value test helpers. Inc also uses the new API for integration tests.
7 lines
102 B
Rust
7 lines
102 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_inc::Inc;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut Inc::new())
|
|
}
|