ci/woodpecker/push/tests Pipeline was successful
Starting impl devcontainer spec
9 lines
202 B
Rust
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,
|
|
}
|