hyperforge 3.3.0

Multi-forge repository management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Forge adapters implementing ForgePort trait

pub mod codeberg;
pub mod forge_port;
pub mod github;
pub mod gitlab;
pub mod local_forge;

pub use codeberg::CodebergAdapter;
pub use forge_port::{ForgeError, ForgePort, ForgeResult};
pub use github::GitHubAdapter;
pub use gitlab::GitLabAdapter;
pub use local_forge::LocalForge;