1use crate::compile; 2use anyhow::Result; 3use std::path::Path; 4 5pub fn execute(file: &Path) -> Result<()> { 6 compile::compile_project(file) 7}