Merge pull request #39 from Trivernis/develop

Develop
develop v0.9.5
Julius Riegel 3 years ago committed by GitHub
commit a75deebba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
Cargo.lock generated

@ -2575,7 +2575,7 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tobi-rs"
version = "0.9.4"
version = "0.9.5"
dependencies = [
"animethemes-rs",
"aspotify",

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

@ -0,0 +1,14 @@
use crate::commands::weeb::post_random_media;
use serenity::client::Context;
use serenity::framework::standard::macros::command;
use serenity::framework::standard::CommandResult;
use serenity::model::channel::Message;
#[command]
#[description("Posts a random kronii gif")]
#[usage("")]
#[aliases("ouro", "kroniicopter", "fan", "timelord")]
#[bucket("general")]
async fn kronii(ctx: &Context, msg: &Message) -> CommandResult {
post_random_media(ctx, msg, "kronii").await
}

@ -4,8 +4,10 @@ pub mod gura;
pub mod haachama;
pub mod inanis;
pub mod korone;
pub mod kronii;
pub mod matsuri;
pub mod miko;
pub mod mumei;
pub mod nene;
pub mod pekofy;
pub mod polka;

@ -0,0 +1,14 @@
use crate::commands::weeb::post_random_media;
use serenity::client::Context;
use serenity::framework::standard::macros::command;
use serenity::framework::standard::CommandResult;
use serenity::model::channel::Message;
#[command]
#[description("Posts a random mumei gif")]
#[usage("")]
#[aliases("mumei", "forgowl", "owl", "nanashi")]
#[bucket("general")]
async fn mumei(ctx: &Context, msg: &Message) -> CommandResult {
post_random_media(ctx, msg, "mumei").await
}

@ -10,8 +10,10 @@ use hololive::gura::GURA_COMMAND;
use hololive::haachama::HAACHAMA_COMMAND;
use hololive::inanis::INANIS_COMMAND;
use hololive::korone::KORONE_COMMAND;
use hololive::kronii::KRONII_COMMAND;
use hololive::matsuri::MATSURI_COMMAND;
use hololive::miko::MIKO_COMMAND;
use hololive::mumei::MUMEI_COMMAND;
use hololive::nene::NENE_COMMAND;
use hololive::pekofy::PEKOFY_COMMAND;
use hololive::polka::POLKA_COMMAND;
@ -30,7 +32,7 @@ mod theme;
#[group]
#[commands(
pekofy, sauce, matsuri, korone, rushia, fubuki, miko, theme, watame, inanis, gura, amelia,
haachama, polka, nene
haachama, polka, nene, kronii, mumei
)]
pub struct Weeb;

Loading…
Cancel
Save