fix: unused imports

This commit is contained in:
Sebastian Pravda 2022-10-26 10:30:17 +02:00
parent 5d52cf7772
commit 50706c3298
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57

View file

@ -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;