fix formatting

This commit is contained in:
Evan Almloff 2023-07-08 11:03:16 -07:00
parent 6a3198ef85
commit d94316f7dd
3 changed files with 0 additions and 3 deletions

View file

@ -67,7 +67,6 @@ use server_fn::{Encoding, ServerFunctionRegistry};
use std::sync::Arc;
use std::sync::RwLock;
use crate::{
prelude::*, render::SSRState, serve_config::ServeConfig, server_context::DioxusServerContext,
server_fn::DioxusServerFnRegistry,

View file

@ -21,7 +21,6 @@ use std::sync::{Arc, RwLock};
use http::StatusCode;
use server_fn::{Encoding, Payload};
use tokio::task::spawn_blocking;

View file

@ -2,7 +2,6 @@ use std::pin::Pin;
use http::{Request, Response};
pub trait Layer: Send + Sync + 'static {
fn layer(&self, inner: BoxedService) -> BoxedService;
}