1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-22 03:27:30 +01:00
nushell/crates/nu_plugin_textview/src/main.rs
2020-01-31 17:45:33 -05:00

7 lines
118 B
Rust

use nu_plugin::serve_plugin;
use nu_plugin_textview::TextView;
fn main() {
serve_plugin(&mut TextView::new());
}