There is a echo bot, but plain text:
```rust use discordflows::{getclient, listentoevent, model::Message};
pub async fn run() { let token = std::env::var("DISCORD_TOKEN").unwrap();
listen_to_event(token.clone(), move |msg| handle(msg, token)).await;
}
async fn handle(msg: Message, token: String) { let client = getclient(token); let channelid = msg.channel_id; let content = msg.content;
if msg.author.bot {
return;
}
_ = client
.send_message(
channel_id.into(),
&serde_json::json!({
"content": content,
}),
)
.await;
} ```
[get_client()] is a Discord
constructor that represents a bot.
[listentoevent()] is responsible for registering a listener for the bot
represented by the bot_token
. When a new Message
coming, the callback
is called with received Message
.