flop_cli/
types.rs

1use std::path::PathBuf;
2
3#[derive(Debug, Clone)]
4pub struct Match {
5    pub file_path: PathBuf,
6    pub line_number: usize,
7    pub line_content: String,
8}