zero-to-production/src/routes/mod.rs

16 lines
276 B
Rust
Raw Normal View History

mod admin;
2020-08-25 21:19:53 +00:00
mod health_check;
mod home;
mod login;
2021-07-22 07:31:57 +00:00
mod newsletters;
2020-08-25 21:19:53 +00:00
mod subscriptions;
2021-03-11 09:24:57 +00:00
mod subscriptions_confirm;
2020-08-25 21:19:53 +00:00
pub use admin::*;
2020-08-25 21:19:53 +00:00
pub use health_check::*;
pub use home::*;
pub use login::*;
2021-07-22 07:31:57 +00:00
pub use newsletters::*;
2020-08-25 21:19:53 +00:00
pub use subscriptions::*;
2021-03-11 09:24:57 +00:00
pub use subscriptions_confirm::*;