Skip to main content

sz_rust_cli/cmd/
mod.rs

1//! 命令模块 — 各命令的实现
2//!
3//! ## 模块结构
4//!
5//! | 模块 | 对齐 PHP | 说明 |
6//! |------|---------|------|
7//! | `make` | `think\console\command\make\*` | 代码生成命令 |
8//! | `migrate` | `think\console\command\migrate\*` | 数据库迁移命令 |
9//! | `route` | `think\console\command\RouteList` | 路由列表命令 |
10//! | `cache` | `think\console\command\Cache` | 缓存清理命令 |
11//! | `scheduler` | sz-orm-scheduler 接入 | 调度器命令 |
12
13pub mod cache;
14pub mod make;
15pub mod migrate;
16pub mod route;
17pub mod scheduler;