Update name of module

This commit is contained in:
Hanno Braun 2024-12-18 21:24:07 +01:00
parent 87e03ced94
commit 47a47bacb5
2 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
mod operation; mod operation;
mod primitives;
mod shape; mod shape;
mod sketch; mod sketch;
mod triangle;
pub use self::{ pub use self::{
operation::{AnyOp, Handle, Operation}, operation::{AnyOp, Handle, Operation},
primitives::Triangle,
shape::Shape, shape::Shape,
sketch::Sketch, sketch::Sketch,
triangle::Triangle,
}; };