Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/tools/ci/src/main.rs
6596 views
1
//! CI script used for Bevy.
2
3
mod args;
4
mod ci;
5
mod commands;
6
mod prepare;
7
8
pub use self::{ci::*, prepare::*};
9
10
fn main() {
11
argh::from_env::<CI>().run();
12
}
13
14