From 57a2df34f4986f1f6062f22804021925afec0419 Mon Sep 17 00:00:00 2001 From: niliara-edu Date: Sat, 25 Jan 2025 20:50:21 +0100 Subject: refactor database --- src/api/artist.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/api/artist.rs') diff --git a/src/api/artist.rs b/src/api/artist.rs index 6cc0f35..e8e5009 100644 --- a/src/api/artist.rs +++ b/src/api/artist.rs @@ -1,5 +1,6 @@ use crate::api::{get_response_from_query, Response}; -use crate::database::{Artist, ArtistPost, ArtistPut, Delete}; +use crate::database::Delete; +use crate::database::artist::{Artist, ArtistPost, ArtistPut}; use crate::extractors::auth_token::AuthenticationToken; use crate::AppState; use actix_web::{delete, get, post, put, web, HttpResponse}; -- cgit v1.2.3