Remove unused put imports

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-14 09:43:50 -03:00
parent cb2f13d5b0
commit 15a09270a1
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ pub mod ui;
use axum::{ use axum::{
extract::{Path, Query, State}, extract::{Path, Query, State},
response::IntoResponse, response::IntoResponse,
routing::{get, post, put}, routing::{get, post},
Json, Router, Json, Router,
}; };
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};

View file

@ -3,7 +3,7 @@ pub mod ui;
use axum::{ use axum::{
extract::{Form, Path, Query, State}, extract::{Form, Path, Query, State},
response::{Html, IntoResponse}, response::{Html, IntoResponse},
routing::{delete, get, post, put}, routing::{delete, get, post},
Json, Router, Json, Router,
}; };
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};