use crate::{bot::Bot, env::EnvConfig, gitea::WebhookType}; #[derive(Clone)] pub struct AppState { pub bot_tx: tokio::sync::mpsc::Sender, pub bot: Bot, pub config: EnvConfig, }