wip docs dir

This commit is contained in:
2025-11-10 16:46:43 +01:00
parent 24e1ade129
commit 659bb5da63
4 changed files with 25 additions and 23 deletions

View File

@@ -1,6 +1,8 @@
use crate::app::config::config::Config;
use super::executions::build_execution::BuildExecution;
pub async fn build(offline_reveal: bool) -> () {
let mut build_execution = BuildExecution::new();
build_execution.execute(offline_reveal).await.expect("build failed")
pub async fn build(config: &Config) -> () {
let mut build_execution = BuildExecution::new(&config.docs_dir);
build_execution.execute(&config).await.expect("build failed")
}