8 lines
199 B
Rust
8 lines
199 B
Rust
use anyhow::Result;
|
|
|
|
/// Main entry point for the Prometeu Compiler binary.
|
|
/// It delegates execution to the library's `run` function.
|
|
fn main() -> Result<()> {
|
|
prometeu_build_pipeline::run()
|
|
}
|