Update name of module

This commit is contained in:
Hanno Braun 2024-10-30 02:23:10 +01:00
parent 4c6b0154c9
commit f735edee68
2 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
mod app;
mod export;
mod mesh;
mod model;
mod render;
fn main() -> anyhow::Result<()> {
let mesh = model::model()?;
export::export(&mesh)?;
render::render(&mesh)?;
app::render(&mesh)?;
Ok(())
}