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 { } }