Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin67 committed Jul 28, 2024
1 parent 9fe16a2 commit c75cc27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inngest/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl<T: InngestEvent> Handler<T> {

res.map(|v| SdkResponse {
status: 200,
body: v
body: v,
})
}
},
Expand Down
3 changes: 2 additions & 1 deletion inngest/src/serve/axum.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use crate::{
event::InngestEvent,
handler::{Handler, RunQueryParams}, result::{Error, SdkResponse},
handler::{Handler, RunQueryParams},
result::{Error, SdkResponse},
};

use axum::{
Expand Down

0 comments on commit c75cc27

Please sign in to comment.