| 1 |
|
| 2 |
|
| 3 |
mod actions; |
| 4 |
mod posts; |
| 5 |
mod thread; |
| 6 |
mod views; |
| 7 |
|
| 8 |
pub(in crate::routes) use actions::*; |
| 9 |
pub(in crate::routes) use posts::{ |
| 10 |
create_thread_handler, create_reply_handler, |
| 11 |
edit_thread_form, edit_thread_handler, delete_thread_handler, |
| 12 |
}; |
| 13 |
pub(in crate::routes) use thread::thread; |
| 14 |
pub(in crate::routes) use views::*; |
| 15 |
|