8 lines
234 B
Rust
8 lines
234 B
Rust
![]() |
use crate::cli::parameters::BuildArgs;
|
||
|
use crate::config::Config;
|
||
|
|
||
|
pub(crate) async fn build_site(args: BuildArgs) -> Result<(), Box<dyn std::error::Error>> {
|
||
|
let _config = Config::load_from_file(args.config).await?;
|
||
|
Ok(())
|
||
|
}
|