1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
mod error;
mod git;

// Re-exports
pub use fungus;
pub use git2;

/// All essential symbols in a simple consumable way
///
/// ### Examples
/// ```
/// use skellige::prelude::*;
/// ```
pub mod prelude {
    // Export all types inside the git module for namespace clarity
    pub mod git {
        pub use crate::{
            error::{Error, Result},
            git::*,
        };
    }

    // Re-exports
    pub use fungus::prelude::*;
}