1use yazi_macro::{emit, relay}; 2use yazi_parser::which::ShowOpt; 3 4pub struct WhichProxy; 5 6impl WhichProxy { 7 pub fn show(opt: ShowOpt) { 8 emit!(Call(relay!(which:show).with_any("opt", opt))); 9 } 10}