🎨 增加并发访问

This commit is contained in:
2026-03-05 21:28:41 +08:00
commit 84c66ccaa7
114 changed files with 35396 additions and 0 deletions

16
src/kiro/model/mod.rs Normal file
View File

@@ -0,0 +1,16 @@
//! Kiro 数据模型
//!
//! 包含 Kiro API 的所有数据类型定义:
//! - `common`: 共享类型(枚举和辅助结构体)
//! - `events`: 响应事件类型
//! - `requests`: 请求类型
//! - `credentials`: OAuth 凭证
//! - `token_refresh`: Token 刷新
//! - `usage_limits`: 使用额度查询
pub mod common;
pub mod credentials;
pub mod events;
pub mod requests;
pub mod token_refresh;
pub mod usage_limits;