mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
10 lines
197 B
Rust
10 lines
197 B
Rust
use yazi_macro::{emit, relay};
|
|
use yazi_parser::which::ShowOpt;
|
|
|
|
pub struct WhichProxy;
|
|
|
|
impl WhichProxy {
|
|
pub fn show(opt: ShowOpt) {
|
|
emit!(Call(relay!(which:show).with_any("opt", opt)));
|
|
}
|
|
}
|