mirror of
https://github.com/nushell/nushell.git
synced 2025-03-29 17:16:49 +01:00
7 lines
124 B
Rust
7 lines
124 B
Rust
use nu_plugin::serve_plugin;
|
|
use nu_plugin_from_sqlite::FromSqlite;
|
|
|
|
fn main() {
|
|
serve_plugin(&mut FromSqlite::new())
|
|
}
|