rusty_ci/lib.rs
1/// This crate can also be used as a library for other tools to generate buildbot projects
2#[macro_use]
3pub mod helper;
4pub use helper::{input, unmatched_quotes, unquote, unwrap, yes_or_no, Cmd, File};
5
6pub mod buildbot;
7pub use buildbot::{
8 Builder, MailNotifier, MasterConfig, MergeRequestHandler, Scheduler, Step, Worker,
9 AUTH_TOKEN_PATH,
10};
11
12pub mod buildsystem;
13pub use buildsystem::*;