mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
12 lines
179 B
Rust
12 lines
179 B
Rust
#![allow(clippy::module_inception)]
|
|
|
|
mod cha;
|
|
|
|
pub use cha::*;
|
|
|
|
pub fn pour(lua: &mlua::Lua) -> mlua::Result<()> {
|
|
cha::Cha::register(lua)?;
|
|
cha::Cha::install(lua)?;
|
|
|
|
Ok(())
|
|
}
|