#[macro_use] extern crate justerror; use axum_login::SqliteStore; pub use users::User; use uuid::Uuid; pub mod db; pub mod generic_handlers; pub mod login; pub mod signup; pub(crate) mod templates; pub mod users; pub(crate) mod util; pub type AuthContext = axum_login::extractors::AuthContext>;