diff --git a/Cargo.toml b/Cargo.toml index a966f63..35852fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] } anyhow = "1.0" tracing = "0.1" tracing-subscriber = "0.3" -reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.11", default-features = false, features = ["rustls-tls","json"] } serde_json = "1.0" fancy-regex = "0.10" rspotify = { version = "0.11", default-features = false, features = ["client-reqwest", "reqwest-rustls-tls"] } diff --git a/src/commands/pkg.rs b/src/commands/pkg.rs new file mode 100644 index 0000000..f5f459d --- /dev/null +++ b/src/commands/pkg.rs @@ -0,0 +1,14 @@ +use crate::bot::{Command, Context}; +use async_trait::async_trait; + +#[derive(Default)] +pub struct Pkg { + pkg_name: String, +} + +#[async_trait] +impl Command for Pkg { + async fn execute(&mut self, msg: Context<'_>) -> anyhow::Result { + + } +} \ No newline at end of file