Fix Json import

This commit is contained in:
Aadi Desai 2023-12-06 14:41:39 +00:00
parent 0dade3be25
commit 86ae0c39b4
Signed by: supleed2
SSH key fingerprint: SHA256:CkbNRs0yVzXEiUp2zd0PSxsfRUMFF9bLlKXtE1xEbKM
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
use axum::{extract::Json, response::IntoResponse, routing::post, Router};
use axum::{response::IntoResponse, routing::post, Json, Router};
pub(crate) fn router() -> Router {
Router::new()

View file

@ -1,4 +1,4 @@
use axum::{extract::Json, routing::post, Router};
use axum::{routing::post, Json, Router};
pub(crate) fn router() -> Router {
Router::new().route("/6", post(count_elf))