Add optional code argument to shutdown command

Signed-off-by: trivernis <trivernis@protonmail.com>
pull/3/head
trivernis 3 years ago
parent a7045ebe5a
commit e11ff3f72f
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

2
Cargo.lock generated

@ -2050,7 +2050,7 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tobi-rs"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"aspotify",
"chrono",

@ -1,6 +1,6 @@
[package]
name = "tobi-rs"
version = "0.1.1"
version = "0.1.2"
authors = ["trivernis <trivernis@protonmail.com>"]
edition = "2018"

@ -1,19 +1,25 @@
use crate::commands::common::handle_autodelete;
use serenity::framework::standard::macros::command;
use serenity::framework::standard::CommandResult;
use serenity::framework::standard::{Args, CommandResult};
use serenity::model::channel::Message;
use serenity::prelude::*;
use std::process;
#[command]
#[description("Shutdown")]
#[usage("")]
#[description("Shuts down the bot with the specified exit code")]
#[min_args(0)]
#[max_args(1)]
#[usage("(<code>)")]
#[owners_only]
async fn shutdown(ctx: &Context, msg: &Message) -> CommandResult {
log::info!("Shutting down...");
async fn shutdown(ctx: &Context, msg: &Message, mut args: Args) -> CommandResult {
let code = args.single::<i32>().unwrap_or(0);
log::info!("Shutting down with code {}...", code);
msg.channel_id
.say(ctx, ":night_with_stars: Good night ....")
.say(
ctx,
format!(":night_with_stars: Good night (code: {})...", code),
)
.await?;
handle_autodelete(ctx, msg).await?;
process::exit(0);
process::exit(code);
}

Loading…
Cancel
Save