struct some configuration members

This commit is contained in:
yggverse 2025-06-25 09:54:44 +03:00
parent a0abeb7278
commit e148496416
2 changed files with 52 additions and 27 deletions

View file

@ -0,0 +1,20 @@
pub struct Time {
pub is_accessed: bool,
pub is_created: bool,
pub is_modified: bool,
}
pub struct Dir {
pub time: Time,
pub is_count: bool,
}
pub struct File {
pub time: Time,
pub is_size: bool,
}
pub struct List {
pub dir: Dir,
pub file: File,
pub time_format: String,
}