Disable user auth in /

master
fernando 2024-02-13 15:22:19 -05:00
parent c3a4f4815d
commit 7c7f7b327b
1 changed files with 1 additions and 3 deletions

View File

@ -1,11 +1,9 @@
use maud::Markup;
use crate::auth::User;
pub mod register;
pub mod user;
#[get("/")]
pub fn index(_u: User) -> Markup {
pub fn index() -> Markup {
crate::view::login::login()
}