fix: get cache correctly from redis
Some checks failed
ci/woodpecker/push/build-and-publish Pipeline failed
ci/woodpecker/push/publish-docs Pipeline failed

This commit is contained in:
Radical 2025-07-20 20:25:15 +02:00
parent eb7e5503de
commit 8a58774359
4 changed files with 14 additions and 7 deletions

View file

@ -1,11 +1,13 @@
use std::sync::Arc;
use axum::{
middleware::from_fn_with_state, routing::{any, delete, get, patch}, Router
Router,
middleware::from_fn_with_state,
routing::{any, delete, get, patch},
};
//use socketioxide::SocketIo;
use crate::{api::v1::auth::CurrentUser, AppState};
use crate::{AppState, api::v1::auth::CurrentUser};
mod uuid;