42 lines
1.4 KiB
Rust
42 lines
1.4 KiB
Rust
use anyhow::Context as _;
|
|
use poise::serenity_prelude as serenity;
|
|
use shuttle_poise::ShuttlePoise;
|
|
use shuttle_secrets::SecretStore;
|
|
|
|
struct Data {} // User data, which is stored and accessible in all command invocations
|
|
type Error = Box<dyn std::error::Error + Send + Sync>;
|
|
type Context<'a> = poise::Context<'a, Data, Error>;
|
|
|
|
/// Responds with "world!"
|
|
#[poise::command(slash_command)]
|
|
async fn hello(ctx: Context<'_>) -> Result<(), Error> {
|
|
ctx.say("world!").await?;
|
|
Ok(())
|
|
}
|
|
|
|
#[shuttle_runtime::main]
|
|
async fn poise(#[shuttle_secrets::Secrets] secret_store: SecretStore) -> ShuttlePoise<Data, Error> {
|
|
// Get the discord token set in `Secrets.toml`
|
|
let discord_token = secret_store
|
|
.get("DISCORD_TOKEN")
|
|
.context("'DISCORD_TOKEN' was not found")?;
|
|
|
|
let framework = poise::Framework::builder()
|
|
.options(poise::FrameworkOptions {
|
|
commands: vec![hello()],
|
|
..Default::default()
|
|
})
|
|
.token(discord_token)
|
|
.intents(serenity::GatewayIntents::non_privileged())
|
|
.setup(|ctx, _ready, framework| {
|
|
Box::pin(async move {
|
|
poise::builtins::register_globally(ctx, &framework.options().commands).await?;
|
|
Ok(Data {})
|
|
})
|
|
})
|
|
.build()
|
|
.await
|
|
.map_err(shuttle_runtime::CustomError::new)?;
|
|
|
|
Ok(framework.into())
|
|
}
|