mirror of
https://github.com/nushell/nushell
synced 2025-01-06 18:29:02 +00:00
7 lines
115 B
Rust
7 lines
115 B
Rust
|
use nu_plugin::serve_plugin;
|
||
|
use nu_plugin_from_mp4::FromMp4;
|
||
|
|
||
|
fn main() {
|
||
|
serve_plugin(&mut FromMp4::new())
|
||
|
}
|