Finishing basic implementation

This commit is contained in:
2022-03-20 23:23:08 +01:00
commit 43278f09c8
8 changed files with 648 additions and 0 deletions

7
src/listener.rs Normal file
View File

@ -0,0 +1,7 @@
use crate::shutdown::Shutdown;
pub(crate) struct Listener {
pub(crate) shutdown: Shutdown,
pub(crate) source: String,
pub(crate) target: String,
}