-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdiscord_bot.rs
52 lines (41 loc) · 1.25 KB
/
discord_bot.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
use std::env;
use serenity::{
async_trait,
framework::standard::{
macros::{command, group},
CommandResult, StandardFramework,
},
model::channel::Message,
prelude::*,
};
#[group]
#[commands(ping)]
struct General;
struct Handler;
#[async_trait]
impl EventHandler for Handler {}
#[tokio::main]
async fn main() {
let framework = StandardFramework::new()
.configure(|c| c.prefix("~")) // set the bot's prefix to "~"
.group(&GENERAL_GROUP);
// Login with a bot token from the environment
let token = env::var("DISCORD_TOKEN").expect("token");
println!("input discord bot token: {}", token);
// let intents = GatewayIntents::non_privileged() | GatewayIntents::MESSAGE_CONTENT;
let intents = GatewayIntents::default();
let mut client = Client::builder(token, intents)
.event_handler(Handler)
.framework(framework)
.await
.expect("Error creating client");
// start listening for events by starting a single shard
if let Err(why) = client.start().await {
println!("An error occurred while running the client: {:?}", why);
}
}
#[command]
async fn ping(ctx: &Context, msg: &Message) -> CommandResult {
msg.reply(ctx, "Pong!").await?;
Ok(())
}