Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
- 新增 SaaS industry 模块 (types/service/handlers/mod/builtin) - 4 行业内置配置: healthcare/education/garment/ecommerce - 数据库迁移: industries + account_industries 表 - 8 个 API 端点 (CRUD + 用户行业关联) - ButlerRouter 改造: 支持 IndustryKeywordConfig 动态注入 - 12 个测试全通过 (含动态行业分类测试)
31 lines
566 B
Rust
31 lines
566 B
Rust
//! ZCLAW SaaS Backend
|
|
//!
|
|
//! 独立的 SaaS 后端服务,提供账号权限管理、模型配置、请求中转和配置迁移。
|
|
|
|
pub mod common;
|
|
pub mod config;
|
|
pub mod crypto;
|
|
pub mod cache;
|
|
pub mod db;
|
|
pub mod error;
|
|
pub mod middleware;
|
|
pub mod models;
|
|
pub mod scheduler;
|
|
pub mod state;
|
|
pub mod tasks;
|
|
pub mod workers;
|
|
|
|
pub mod auth;
|
|
pub mod account;
|
|
pub mod model_config;
|
|
pub mod relay;
|
|
pub mod migration;
|
|
pub mod role;
|
|
pub mod prompt;
|
|
pub mod agent_template;
|
|
pub mod scheduled_task;
|
|
pub mod telemetry;
|
|
pub mod billing;
|
|
pub mod industry;
|
|
pub mod knowledge;
|