mirror of
https://github.com/nushell/nushell.git
synced 2025-02-20 20:41:22 +01:00
7 lines
117 B
Rust
7 lines
117 B
Rust
|
use nu_plugin::serve_plugin;
|
||
|
use nu_plugin_chart::ChartLine;
|
||
|
|
||
|
fn main() {
|
||
|
serve_plugin(&mut ChartLine::new());
|
||
|
}
|