add edf computation

This commit is contained in:
Thibaud Dauce
2026-02-18 17:48:27 +01:00
parent 1561c07432
commit 6d4e682c60
4 changed files with 354 additions and 0 deletions

View File

@@ -13,5 +13,6 @@ async fn main() -> Result<()> {
Commands::Desktop(cmd) => commands::desktop::run(&cmd),
Commands::Dev { site } => commands::dev::run(site).await,
Commands::Deploy { site } => commands::deploy::run(site).await,
Commands::Edf { csv } => commands::edf::run(&csv),
}
}