mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 04:36:45 +01:00
6 lines
144 B
Rust
6 lines
144 B
Rust
//! Plugin host
|
|
include!("lib.rs");
|
|
pub fn main () -> Usually<()> {
|
|
Tui::run(Arc::new(RwLock::new(crate::Plugin::new("")?)))?;
|
|
Ok(())
|
|
}
|