mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-22 23:31:05 +00:00
8 lines
165 B
Rust
8 lines
165 B
Rust
use crate::{file::FileOut, plugin::PluginOut, prework::PreworkOut};
|
|
|
|
#[derive(Debug)]
|
|
pub enum TaskOut {
|
|
File(FileOut),
|
|
Plugin(PluginOut),
|
|
Prework(PreworkOut),
|
|
}
|