1 2 3 4 5 6
use crate::domain::{Bundle, BundlePath}; pub fn make_directory(bundle: &mut Bundle, path: &str) { tracing::info!(%path, "action: make directory"); bundle.mkdir(BundlePath::projection(&path)); }