yazi/yazi-core/src/tasks/plugin.rs
2025-09-02 16:58:34 +08:00

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); }
}