This commit is contained in:
Rahix 2026-03-01 15:23:57 +01:00
commit 1db4778dc4
8 changed files with 2410 additions and 0 deletions

23
src/main.rs Normal file
View file

@ -0,0 +1,23 @@
#![allow(unused)]
mod task;
mod collect;
mod ci_meta;
mod context;
use context::Context;
async fn run() -> anyhow::Result<()> {
let ctx = Context::new_from_env_or_dev_fallback()?;
log::info!("Context: \n{ctx:#?}");
collect::collect_tasks(&ctx).await?;
todo!()
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info")).init();
run().await
}