wecom_rs/client/external_contact/
mod.rs

1use async_trait::async_trait;
2
3// TODO: 其他暂未实现
4
5/// 企业服务人员管理
6mod enterprise_service;
7pub use enterprise_service::*;
8
9/// 客户管理
10mod customer;
11pub use customer::*;
12
13/// 客户标签管理
14mod customer_tag;
15pub use customer_tag::*;
16
17/// 在职继承
18mod on_job_inherit;
19pub use on_job_inherit::*;
20
21/// 离职继承
22mod leave_job_inherit;
23pub use leave_job_inherit::*;
24
25/// 客户群管理
26mod group_chat;
27pub use group_chat::*;
28
29/// 联系我与客户入群方式
30#[async_trait]
31pub trait ContactAndInGroupManager {}
32
33/// 客户朋友圈管理
34#[async_trait]
35pub trait ConstomerMomentManager {}
36
37/// 消息推送
38#[async_trait]
39pub trait MessagePushManager {}
40
41/// 统计管理
42#[async_trait]
43pub trait StatisticalManager {}
44
45/// 变更回调
46#[async_trait]
47pub trait ChangedCallbackManager {}