Update name of module

This commit is contained in:
Hanno Braun 2024-11-22 18:52:03 +01:00
parent 0b2e3ecbcf
commit d2a4d60b52
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
mod geometry;
mod pipeline;
mod pipelines;
mod renderer;
mod shaders;

View File

@ -9,7 +9,7 @@ use crate::geometry::Operation;
use super::{
geometry::Geometry,
pipeline::Pipeline,
pipelines::Pipeline,
shaders::{Shaders, Uniforms},
};