mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-23 07:41:03 +00:00
9 lines
233 B
Rust
9 lines
233 B
Rust
use yazi_parser::app::PluginOpt;
|
|
|
|
use super::Tasks;
|
|
|
|
impl Tasks {
|
|
pub fn plugin_micro(&self, opt: PluginOpt) { self.scheduler.plugin_micro(opt); }
|
|
|
|
pub fn plugin_macro(&self, opt: PluginOpt) { self.scheduler.plugin_macro(opt); }
|
|
}
|