| 45 | /// 分机号码配置 |
| 46 | #[derive(Debug, Clone, Deserialize)] |
| 47 | pub struct ExtensionConfig { |
| 48 | /// 分机起始号码(含) |
| 49 | pub range_start: u32, |
| 50 | /// 分机结束号码(含) |
| 51 | pub range_end: u32, |
| 52 | /// 所有分机的默认密码 |
| 53 | pub default_password: String, |
| 54 | } |
| 55 | |
| 56 | /// TLS 证书配置 |
| 57 | #[derive(Debug, Clone, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected