webhook_bridge/src/app_state.rs
Tom Alexander f3b00c46ea
Some checks failed
semver Build semver has succeeded
format Build format has succeeded
clippy Build clippy has succeeded
rust-test Build rust-test has failed
build Build build has succeeded
Test: Remove the clients from AppState entirely.
2024-09-30 00:38:32 -04:00

8 lines
152 B
Rust

use std::collections::HashSet;
use std::sync::Arc;
#[derive(Clone)]
pub(crate) struct AppState {
pub(crate) allowed_repos: Arc<HashSet<String>>,
}