File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,7 @@ use std::{
50
50
future:: Future ,
51
51
ops:: { Deref , DerefMut } ,
52
52
path:: Path ,
53
- sync:: Arc ,
54
- sync:: LazyLock ,
53
+ sync:: { Arc , LazyLock } ,
55
54
} ;
56
55
57
56
/// This struct lets you define headers and override the status of the Response from an Element or a Server Function
Original file line number Diff line number Diff line change @@ -10,7 +10,11 @@ use crate::{
10
10
} ;
11
11
use linear_map:: LinearMap ;
12
12
use rustc_hash:: FxHashSet ;
13
- use std:: { any:: TypeId , borrow:: Cow , cell:: LazyCell , cell:: RefCell } ;
13
+ use std:: {
14
+ any:: TypeId ,
15
+ borrow:: Cow ,
16
+ cell:: { LazyCell , RefCell } ,
17
+ } ;
14
18
use wasm_bindgen:: { intern, prelude:: Closure , JsCast , JsValue } ;
15
19
use web_sys:: { AddEventListenerOptions , Comment , HtmlTemplateElement } ;
16
20
You can’t perform that action at this time.
0 commit comments