8 lines
152 B
Rust
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>>,
|
|
}
|