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