This commit is contained in:
2026-05-17 23:23:13 +02:00
parent a23e2c83d1
commit 695f30d678
25 changed files with 6000 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
mod apk;
mod build;
mod cli;
mod config;
mod graph;
mod log;
mod patches;
mod phase;
mod recipe;
mod rewrite;
mod source;
mod starlark_eval;
mod update;
use anyhow::Result;
use clap::Parser;
fn main() -> Result<()> {
let cli = cli::Cli::parse();
cli::run(cli)
}