From 5898e5ab4359945ef52dc7460bb2937a85603fc2 Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Sun, 26 Jan 2025 12:25:13 +0100 Subject: authentication done --- src/database/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/database/mod.rs') diff --git a/src/database/mod.rs b/src/database/mod.rs index d66b72b..884a597 100644 --- a/src/database/mod.rs +++ b/src/database/mod.rs @@ -1,7 +1,8 @@ -pub mod song; pub mod album; pub mod artist; pub mod search_results; +pub mod song; +pub mod user; use serde::{Deserialize, Serialize}; use sqlx::mysql::{MySqlPool, MySqlPoolOptions}; @@ -31,4 +32,3 @@ impl DatabaseWrapper { Ok(DatabaseWrapper { db_pool: pool }) } } - -- cgit v1.2.3