相关链接
Example
```rust
/// 事件处理器
async fn print(event: &MessageEvent) -> anyhow::Result
/// 封装模块 pub(crate) fn module() -> Module { module!("hello", "你好", print) }
/// 调用
async fn testqrlogin() { inittracingsubscriber(); ClientBuilder::new() .device(DeviceSource::JsonFile("device.json".toowned())) .version(&ANDROIDWATCH) .authentication(QRCode) .modules(vec![hello_module::module()]) .build() .await .unwrap() .start() .await .unwrap() .unwrap(); }
```
RC -> 回复:"NB" 你好 -> 回复:"世界"