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/lib.rs | |
| parent | e41e8bda221b44d09d7e93ffc43675147ab60a6d (diff) | |
Refactor mling to use new program architecture and install scripts
Diffstat (limited to 'mling/src/lib.rs')
| -rw-r--r-- | mling/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mling/src/lib.rs b/mling/src/lib.rs new file mode 100644 index 0000000..2ea6305 --- /dev/null +++ b/mling/src/lib.rs @@ -0,0 +1,12 @@ +#![allow(unused_imports)] + +use mingling::macros::gen_program; + +pub mod cargo_style; +pub mod display; +pub mod res; + +mod proj_mgr; +use proj_mgr::*; + +gen_program!(); |
