.. [no ci]

This commit is contained in:
sxyazi 2023-10-22 12:51:06 +08:00
parent f91bfea1de
commit 24655da642
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ use std::time::UNIX_EPOCH;
use mlua::{AnyUserData, IntoLua, MetaMethod, UserData, UserDataFields, UserDataMethods, UserDataRef}; use mlua::{AnyUserData, IntoLua, MetaMethod, UserData, UserDataFields, UserDataMethods, UserDataRef};
use yazi_config::THEME; use yazi_config::THEME;
use super::shared::{Range, Url}; use super::{Range, Url};
use crate::{layout::Style, LUA}; use crate::{layout::Style, LUA};
pub struct File(yazi_core::files::File); pub struct File(yazi_core::files::File);

View file

@ -10,6 +10,6 @@ mod tasks;
pub use active::*; pub use active::*;
pub use bindings::*; pub use bindings::*;
pub use files::*; pub use files::*;
pub use yazi_shared::*; pub use shared::*;
pub use tabs::*; pub use tabs::*;
pub use tasks::*; pub use tasks::*;