diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-07 02:25:27 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-07 02:25:27 +0800 |
| commit | 81528b273c18693ebd3f05c6f8057ff8e632f4a0 (patch) | |
| tree | 85026c27535337c0123d4650c844ae364bc9780a /mling/src/res | |
| parent | e41e8bda221b44d09d7e93ffc43675147ab60a6d (diff) | |
Refactor mling to use new program architecture and install scripts
Diffstat (limited to 'mling/src/res')
| -rw-r--r-- | mling/src/res/current_dir.rs | 6 | ||||
| -rw-r--r-- | mling/src/res/mod.rs | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/mling/src/res/current_dir.rs b/mling/src/res/current_dir.rs new file mode 100644 index 0000000..b928596 --- /dev/null +++ b/mling/src/res/current_dir.rs @@ -0,0 +1,6 @@ +use std::path::PathBuf; + +#[derive(Default, Clone)] +pub struct ResCurrentDir { + pub path: PathBuf, +} diff --git a/mling/src/res/mod.rs b/mling/src/res/mod.rs new file mode 100644 index 0000000..b6ea60d --- /dev/null +++ b/mling/src/res/mod.rs @@ -0,0 +1,2 @@ +mod current_dir; +pub use current_dir::*; |
