Files
herald/crates/herald-server/src/state.rs
T
qpismont 15f619ccf7
ci/woodpecker/push/tests Pipeline was successful
Move to multi crates project
Starting impl devcontainer spec
2026-07-31 20:06:37 +00:00

9 lines
202 B
Rust

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