mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
11 lines
282 B
Rust
11 lines
282 B
Rust
#![allow(clippy::if_same_then_else, clippy::unit_arg)]
|
|
|
|
yazi_macro::mod_pub!(bindings elements external fs isolate loader process pubsub runtime theme utils);
|
|
|
|
yazi_macro::mod_flat!(lua);
|
|
|
|
pub fn init() -> anyhow::Result<()> {
|
|
crate::loader::init();
|
|
crate::init_lua()?;
|
|
Ok(())
|
|
}
|