mirror of
https://github.com/sharkdp/bat
synced 2024-11-08 19:10:41 +00:00
7 lines
124 B
Rust
7 lines
124 B
Rust
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
||
|
pub enum InputFile<'a> {
|
||
|
StdIn,
|
||
|
Ordinary(&'a str),
|
||
|
ThemePreviewFile,
|
||
|
}
|