1
0
Fork 0
forked from gorb/backend

refactor: combine crypto.rs with utils.rs

This commit is contained in:
Radical 2025-05-04 23:50:38 +02:00
parent c2bface373
commit 77245e98c5
6 changed files with 20 additions and 19 deletions

View file

@ -3,7 +3,7 @@ use log::error;
use std::time::{SystemTime, UNIX_EPOCH};
use crate::{
crypto::{generate_access_token, generate_refresh_token}, utils::refresh_token_cookie, Data
utils::{generate_access_token, generate_refresh_token, refresh_token_cookie}, Data
};
use super::Response;