wip docs dir
This commit is contained in:
@@ -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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user