1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use crate::core::config::Config; pub mod batch_delete; pub mod create; pub mod list; pub mod list_chat_members; /// 参与人管理服务 pub struct AttendeeService { pub config: Config, } impl AttendeeService { pub fn new(config: Config) -> Self { Self { config } } }