2026-03-24 13:40:15 +00:00

6 lines
86 B
Rust

pub struct FsEntry {
pub name: String,
pub is_dir: bool,
pub size: u64,
}