uberbot/src/commands/pkg.rs

14 lines
257 B
Rust
Raw Normal View History

2022-08-05 19:30:56 -05:00
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<String> {
}
}