* 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
103 B
Rust
7 lines
103 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_str::Str;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut Str::new());
|
|
}
|