Skip to main content

send/
send.rs

1use telegram_notify::send;
2
3#[tokio::main]
4async fn main() -> Result<(), telegram_notify::NotifyError> {
5    send("trade executed").await?;
6    Ok(())
7}