| 1 | mod layer; |
|---|---|
| 2 | mod layer_clone; |
| 3 | mod layer_clone_sync; |
| 4 | mod sync; |
| 5 | mod unsync; |
| 6 | |
| 7 | #[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411 |
| 8 | pub use self::{ |
| 9 | layer::BoxLayer, layer_clone::BoxCloneServiceLayer, layer_clone_sync::BoxCloneSyncServiceLayer, |
| 10 | sync::BoxService, unsync::UnsyncBoxService, |
| 11 | }; |
| 12 |
