Fix all compile warnings in frontend and backend

Removed unused imports, fields, methods, and structs that were generating warnings during compilation.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Connor Johnstone
2025-08-28 16:33:07 -04:00
parent 42091492d5
commit b7b351416d
4 changed files with 4 additions and 74 deletions

View File

@@ -1,17 +1,12 @@
use axum::{
extract::{Query, State},
http::{HeaderMap, StatusCode},
extract::State,
http::HeaderMap,
response::Json,
};
use serde::Deserialize;
use std::sync::Arc;
use crate::{AppState, models::{LoginRequest, RegisterRequest, AuthResponse, ApiError}};
#[derive(Deserialize)]
pub struct VerifyQuery {
pub token: String,
}
pub async fn register(
State(state): State<Arc<AppState>>,