This commit is contained in:
azw 2023-11-12 01:49:03 +00:00
parent d9c8e5a44f
commit b9dc2e1d33
6 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,5 @@
pub mod downstreammgr;
pub mod downstream;
pub use downstreammgr::DownStreamMgr;
pub use downstream::DownSream;

View File

@ -0,0 +1,3 @@
pub struct DownStreamMgr {
}

View File

@ -0,0 +1,3 @@
pub struct DownStream {
}

View File

@ -0,0 +1,5 @@
pub mod upstreammgr;
pub mod upstream;
pub use upstreammgr::UpStreamMgr;
pub use upstream::UpStream;

View File

@ -0,0 +1,3 @@
pub struct UpStream {
}

View File

@ -0,0 +1,3 @@
pub struct UpStreamMgr {
}