Remove unused put imports
This commit is contained in:
parent
cb2f13d5b0
commit
15a09270a1
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ pub mod ui;
|
|||
use axum::{
|
||||
extract::{Path, Query, State},
|
||||
response::IntoResponse,
|
||||
routing::{get, post, put},
|
||||
routing::{get, post},
|
||||
Json, Router,
|
||||
};
|
||||
use chrono::{DateTime, Utc};
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ pub mod ui;
|
|||
use axum::{
|
||||
extract::{Form, Path, Query, State},
|
||||
response::{Html, IntoResponse},
|
||||
routing::{delete, get, post, put},
|
||||
routing::{delete, get, post},
|
||||
Json, Router,
|
||||
};
|
||||
use chrono::{DateTime, Utc};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue