use std::path::PathBuf; /// Represents the current working directory. /// /// This struct encapsulates the path of the current working directory, /// providing a clear abstraction for directory context throughout the application. #[derive(Debug, Default, Clone)] pub struct ResCurrentDir { /// The current working directory path. pub cwd: PathBuf, }