calories/server/src/my_structs.rs

9 lines
182 B
Rust

pub use self::myerror::MyError;
pub use self::purchases::Purchase;
pub use self::running::Running;
pub use self::weight::Weight;
mod myerror;
mod purchases;
mod running;
mod weight;