Files
ppanel-web/crates/sms/src/sender.rs
T
Ember Moth 2744c70c5c Initial
2026-07-05 20:27:58 +08:00

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<()>;
}