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 primitives;
mod shape;
mod sketch;
mod triangle;
pub use self::{
operation::{AnyOp, Handle, Operation},
primitives::Triangle,
shape::Shape,
sketch::Sketch,
triangle::Triangle,
};