1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-09-01 06:07:16 +02:00

remove pipeline from public api (#335)

This commit is contained in:
Rob Ede
2021-04-16 00:00:02 +01:00
committed by GitHub
parent 7a82288066
commit 47fba25d67
10 changed files with 85 additions and 35 deletions

View File

@@ -246,7 +246,11 @@ mod tests {
use futures_util::future::lazy;
use crate::{err, ok, pipeline, pipeline_factory, ready, Ready, Service, ServiceFactory};
use crate::{
err, ok,
pipeline::{pipeline, pipeline_factory},
ready, Ready, Service, ServiceFactory,
};
#[derive(Clone)]
struct Srv1(Rc<Cell<usize>>);