mirror of
https://github.com/nushell/nushell.git
synced 2025-05-08 17:02:59 +00:00
7 lines
114 B
Rust
7 lines
114 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_average::Average;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut Average::new())
|
|
}
|