//! 类型化数据库模型 (sqlx::FromRow) //! //! 替代原始元组解构 `(String, String, ...)`,提供编译期字段检查。 //! 每个结构体对应一个数据库查询结果,字段名与 SQL 列名一致。 pub mod account; pub mod api_token; pub mod config; pub mod device; pub mod model; pub mod permission_template; pub mod prompt; pub mod provider; pub mod provider_key; pub mod relay_task; pub mod role; pub mod telemetry; pub mod usage; // Re-export all row types for convenient access pub use account::*; pub use api_token::*; pub use config::*; pub use device::*; pub use model::*; pub use permission_template::*; pub use prompt::*; pub use provider::*; pub use provider_key::*; pub use relay_task::*; pub use role::*; pub use telemetry::*; pub use usage::*;