mirror of
https://github.com/supleed2/cch23-8bit.git
synced 2024-12-22 14:05:48 +00:00
Fix Json import
This commit is contained in:
parent
0dade3be25
commit
86ae0c39b4
|
@ -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()
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue