mirror of
https://github.com/nushell/nushell.git
synced 2025-01-14 02:08:51 +01:00
7 lines
106 B
Rust
7 lines
106 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_post::Post;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut Post::new());
|
|
}
|