commit-bridge 0.1.0

Seamless workflow dispatch for remote git dependencies.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Implementation of the repository pattern.

pub mod branch;
pub mod error;
pub mod sqlite;
pub mod subscription;
pub mod trigger;

pub use error::RepositoryError;
pub use sqlite::SqliteRepository;