reactive_graph/tooling/repository/
mod.rs

1pub mod args;
2
3pub const DEFAULT_REPOSITORY_OWNER: &str = "reactive-graph";
4
5pub trait Repository: Send + Sync {
6    fn repository_owner(&self) -> String;
7    fn repository_name(&self) -> String;
8}