mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-23 15:51:03 +00:00
11 lines
258 B
Rust
11 lines
258 B
Rust
use yazi_proxy::options::PluginOpt;
|
|
|
|
use super::Tasks;
|
|
|
|
impl Tasks {
|
|
#[inline]
|
|
pub fn plugin_micro(&self, opt: PluginOpt) { self.scheduler.plugin_micro(opt); }
|
|
|
|
#[inline]
|
|
pub fn plugin_macro(&self, opt: PluginOpt) { self.scheduler.plugin_macro(opt); }
|
|
}
|