mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-08-29 05:52:08 -04:00
5 lines
160 B
Rust
5 lines
160 B
Rust
#[async_trait::async_trait]
|
|
pub trait Sender: Send + Sync {
|
|
async fn send(&self, area: &str, phone: &str, code: &str, expire: u32) -> anyhow::Result<()>;
|
|
}
|