Files
kagami/src/sources/forgejo.rs

12 lines
167 B
Rust

pub struct KagamiSourceForgejo {
host: String,
}
impl KagamiSourceForgejo {
pub fn new(host: &str) -> Self {
Self {
host: host.to_string(),
}
}
}