minor cleanup

This commit is contained in:
Joe Ardent 2023-05-18 12:15:37 -07:00
parent 091ddbf48a
commit 46232b4254
2 changed files with 3 additions and 6 deletions

View file

@ -5,5 +5,3 @@ pub mod db;
pub mod handlers;
pub(crate) mod templates;
pub mod users;
//pub type Db: axum::

View file

@ -2,13 +2,12 @@ use argon2::{
password_hash::{rand_core::OsRng, PasswordHash, PasswordHasher, PasswordVerifier, SaltString},
Argon2,
};
use askama::Template;
use axum::{
extract::{Form, Path, State},
extract::{Form, State},
http::StatusCode,
response::IntoResponse,
};
use sqlx::{error::DatabaseError, Sqlite, SqlitePool};
use sqlx::SqlitePool;
use tracing::log::log;
use unicode_segmentation::UnicodeSegmentation;
use uuid::Uuid;
@ -52,7 +51,7 @@ pub async fn get_create_user() -> CreateUser {
#[axum::debug_handler]
pub async fn post_create_user(
State(pool): State<sqlx::Pool<Sqlite>>,
State(pool): State<sqlx::SqlitePool>,
Form(signup): Form<CreateUser>,
) -> Result<(), CreateUserError> {
let username = &signup.username;