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 url;
|
|
|
|
pub use url::*;
|
|
|
|
pub fn pour(lua: &mlua::Lua) -> mlua::Result<()> {
|
|
url::Url::register(lua)?;
|
|
url::Url::install(lua)?;
|
|
|
|
Ok(())
|
|
}
|