Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(sp-server): remove delia-specific APIs #803

Merged
merged 2 commits into from
Mar 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: cargo fmt
  • Loading branch information
jmg-duarte committed Mar 12, 2025
commit a1f7c9b966aae5d594e87a7d4f5948d215103c0c
9 changes: 5 additions & 4 deletions storage-provider/server/src/storage.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
use std::{io, net::SocketAddr, path::PathBuf, str::FromStr, sync::Arc};

use axum::extract::DefaultBodyLimit;
use axum::{
body::Body,
extract::{FromRequest, MatchedPath, Multipart, Path, Request, State},
extract::{DefaultBodyLimit, FromRequest, MatchedPath, Multipart, Path, Request, State},
http::{header, StatusCode},
response::{IntoResponse, Response},
routing::{get, put},
Expand All @@ -22,8 +21,10 @@ use tokio_util::{
io::{ReaderStream, StreamReader},
sync::CancellationToken,
};
use tower_http::cors::{Any, CorsLayer};
use tower_http::trace::TraceLayer;
use tower_http::{
cors::{Any, CorsLayer},
trace::TraceLayer,
};
use uuid::Uuid;

use crate::db::DealDB;
Expand Down