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