Skip to main content

espforge_lib/cli/commands/
compile.rs

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