Login
4 branches 0 tags
Ben (Desktop/Arch) Code cleanup 53b2511 1 month ago 119 Commits
rubhub / src / controllers / mod.rs
mod not_found;
mod auth;
mod contact;
mod landing;
mod user;

pub mod project;

pub use user::{settings_page, handle_settings, user_page};
pub use contact::contact;
pub use landing::index;
pub use not_found::not_found;
pub use auth::{handle_login, login_page, logout, handle_registration, registration_page};