blob: b774705c648f49bed87acd1c20a6ac40846edcf9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
}
|