Skip to content

Commit 5aa365a

Browse files
committed
fix: 修复模块导入,确保 run 模块和 cursive 正确暴露
1 parent a6c537f commit 5aa365a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

jkconfig/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mod log;
66

77
pub mod data;
88
// UI模块暂时注释掉,使用主程序中的 MenuView
9-
mod run;
9+
pub mod run;
1010
pub mod ui;
1111

1212
// Web服务器模块(需要web feature)

ostool/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ pub mod utils;
1111
extern crate log;
1212
#[macro_use]
1313
extern crate anyhow;
14+
15+
pub use jkconfig::cursive;

0 commit comments

Comments
 (0)