fix: remove unused imports in imphnen-hackathon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
11442c6285
commit
5715e75593
@@ -2,7 +2,7 @@ use axum::{
|
||||
extract::{Path, Query},
|
||||
middleware::from_fn,
|
||||
response::IntoResponse,
|
||||
routing::{delete, get, post, put},
|
||||
routing::{delete, get, post},
|
||||
Extension, Json, Router,
|
||||
};
|
||||
use sqlx::{PgPool, FromRow};
|
||||
|
||||
@@ -2,7 +2,6 @@ use axum::{extract::Path, response::IntoResponse, routing::get, Extension, Route
|
||||
use sqlx::{PgPool, FromRow};
|
||||
use std::sync::Arc;
|
||||
use uuid::Uuid;
|
||||
use chrono::{DateTime, Utc};
|
||||
use serde::Serialize;
|
||||
use utoipa::ToSchema;
|
||||
use imphnen_utils::{errors::AppError, response_format::ApiSuccess};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use axum::{middleware::from_fn, routing::{delete, get, post}, Extension, Router};
|
||||
use axum::{middleware::from_fn, routing::{delete, get}, Extension, Router};
|
||||
use sqlx::PgPool;
|
||||
use std::sync::Arc;
|
||||
use crate::chat::application::chat_service::ChatServiceImpl;
|
||||
|
||||
@@ -3,7 +3,6 @@ use sqlx::PgPool;
|
||||
use std::sync::Arc;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use utoipa::ToSchema;
|
||||
use uuid::Uuid;
|
||||
use imphnen_utils::{errors::AppError, response_format::ApiSuccess};
|
||||
use crate::common::hackathon_jwt::HackathonJwtService;
|
||||
use crate::common::supabase_client::SupabaseClient;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use axum::{middleware::from_fn, routing::{get, put}, Extension, Router};
|
||||
use axum::{middleware::from_fn, routing::get, Extension, Router};
|
||||
use sqlx::PgPool;
|
||||
use std::sync::Arc;
|
||||
use crate::users::application::user_service::HackathonUserServiceImpl;
|
||||
|
||||
Reference in New Issue
Block a user