- Base platform from base.git (ERP base: auth, core, config, message, workflow, plugin) - Created erp-diary module skeleton (lib.rs, dto.rs, error.rs, event.rs, state.rs) - Integrated erp-diary into workspace and erp-server - Added DiaryModule registration in main.rs - Added DiaryState FromRef in state.rs - Diary routes mounted (empty routes, ready for implementation) - Product design spec v1.2 preserved in docs/ - Implementation plan preserved in plans/ Cargo check: OK Cargo test: OK (78+ base tests passing)
12 lines
242 B
Rust
12 lines
242 B
Rust
pub mod auth_service;
|
|
pub mod dept_service;
|
|
pub mod org_service;
|
|
pub mod password;
|
|
pub mod permission_service;
|
|
pub mod position_service;
|
|
pub mod role_service;
|
|
pub mod seed;
|
|
pub mod token_service;
|
|
pub mod user_service;
|
|
pub mod wechat_service;
|