1#![cfg_attr(feature = "fail-on-warnings", deny(warnings))] 2#![cfg_attr(feature = "fail-on-warnings", deny(clippy::all))] 3 4mod concourse; 5mod config; 6mod database; 7mod repo; 8mod workspace; 9 10pub mod cli;