From 50706c329848f7bc1c9c030101ed1db81d183c92 Mon Sep 17 00:00:00 2001 From: Sebastian Pravda Date: Wed, 26 Oct 2022 10:30:17 +0200 Subject: [PATCH] fix: unused imports --- core/src/services/candidate_service.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/services/candidate_service.rs b/core/src/services/candidate_service.rs index e94ccb1..5862133 100644 --- a/core/src/services/candidate_service.rs +++ b/core/src/services/candidate_service.rs @@ -1,7 +1,6 @@ -use jsonwebtoken::{Header, EncodingKey}; use sea_orm::DatabaseConnection; -use crate::{crypto, Query, token::{candidate_token::CandidateToken, generate_candidate_token}, error::{ServiceError, USER_NOT_FOUND_ERROR, INVALID_CREDENTIALS_ERROR, JWT_ERROR, DB_ERROR}}; +use crate::{crypto, Query, token::{generate_candidate_token}, error::{ServiceError, USER_NOT_FOUND_ERROR, INVALID_CREDENTIALS_ERROR, DB_ERROR}}; pub struct CandidateService;