1
 2
 3
 4
 5
 6
 7
 8
 9
10
/// A compound type used to manage a repository with configuration files.
#[derive(Debug)]
pub struct Repository {}

impl Repository {
    /// Create a new `Repository`.
    pub fn new() -> Self {
        Self {}
    }
}