Warning Squashing

This commit is contained in:
benwis
2023-01-08 19:41:22 -08:00
parent 01e024b726
commit b6579a040a
4 changed files with 3 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ cfg_if! {
if #[cfg(feature = "ssr")] {
use axum::{
body::{boxed, Body, BoxBody},
extract::{Path, Extension},
extract::Extension,
http::{Request, Response, StatusCode, Uri},
};
use tower::ServiceExt;

View File

@@ -6,7 +6,6 @@ cfg_if! {
if #[cfg(feature = "ssr")] {
use axum::{
Router,
routing::{get},
extract::Extension,
};
use leptos_axum::{generate_route_list, LeptosRoutes};

View File

@@ -4,7 +4,7 @@ cfg_if! {
if #[cfg(feature = "ssr")] {
use axum::{
body::{boxed, Body, BoxBody},
extract::{Path, Extension},
extract::Extension,
http::{Request, Response, StatusCode, Uri},
};
use tower::ServiceExt;

View File

@@ -4,7 +4,7 @@ use leptos::*;
cfg_if! {
if #[cfg(feature = "ssr")] {
use axum::{
routing::{post, get},
routing::post,
extract::Extension,
Router,
};