Skip to content

Commit

Permalink
chore(core): remove redundance bounds on Cors middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Jan 1, 2024
1 parent a61d065 commit f01a71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz-core/src/middleware/cors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ pub struct CorsMiddleware<H> {
impl<H, O> Handler<Request> for CorsMiddleware<H>
where
H: Handler<Request, Output = Result<O>> + Send + Clone + 'static,
O: IntoResponse + 'static,
O: IntoResponse,
{
type Output = Result<Response>;

Expand Down

0 comments on commit f01a71c

Please sign in to comment.