Automate is a low level and asynchronous rust library for interacting with the Discord API
Automate currently only works with Rust nightly. The tested version and the one used in CI is
nightly-2020-01-31
. Refer to rust edition guide
to learn how to switch to rust nightly.
In order to use Automate in your project, add the following line to your Cargo.toml
under the [dependencies]
section :
automate = "0.2"
You can then write the following in your main.rs
. This simple example will respond Hello DISCORD_API_TOKEN
environment variable. You can create a
bot and generate a token on Discord's developers portal.
```rust
use automate::async_trait; use automate::{Error, Discord, Listener, Session}; use automate::gateway::MessageCreateDispatch; use automate::http::CreateMessage; use std::env;
struct MessageListener;
impl Listener for MessageListener { async fn onmessagecreate(&mut self, session: &Session, message: &MessageCreateDispatch) -> Result<(), Error> { let message = &message.0;
if message.author.id != session.bot().id {
let content = Some(format!("Hello {}!", message.author.username));
session.create_message(message.channel_id, CreateMessage {
content,
..Default::default()
}).await?;
}
Ok(())
}
}
fn main() { automate::setup_logging();
Discord::new(&env::var("DISCORD_API_TOKEN").expect("API token not found"))
.with_listener(MessageListener)
.connect_blocking()
} ```
Any kind of contribution is welcome, from issues to pull requests. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
Licensed under the MIT license.