fix: imports

This commit is contained in:
Sebastian Pravda 2022-10-26 11:23:24 +02:00
parent ecc9b54ce5
commit 6a425d3f7a
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57

View file

@ -1,7 +1,7 @@
use entity::candidate;
use sea_orm::DatabaseConnection;
use crate::{crypto, Query, token::{generate_candidate_token, decode_candidate_token, candidate_token::CandidateToken}, error::{ServiceError, USER_NOT_FOUND_ERROR, INVALID_CREDENTIALS_ERROR, DB_ERROR, JWT_ERROR, USER_NOT_FOUND_BY_JWT_ID}};
use crate::{crypto, Query, token::{generate_candidate_token, candidate_token::CandidateToken}, error::{ServiceError, USER_NOT_FOUND_ERROR, INVALID_CREDENTIALS_ERROR, DB_ERROR, USER_NOT_FOUND_BY_JWT_ID}};
pub struct CandidateService;