diff options
Diffstat (limited to 'src/output_protocol/udp.rs')
| -rw-r--r-- | src/output_protocol/udp.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/output_protocol/udp.rs b/src/output_protocol/udp.rs new file mode 100644 index 0000000..f1e5876 --- /dev/null +++ b/src/output_protocol/udp.rs @@ -0,0 +1,14 @@ +use crate::OutputProtocol; + +#[derive(Debug, Default)] +pub struct UDPOutputProtocol {} + +impl OutputProtocol for UDPOutputProtocol { + async fn init(self) { + todo!() + } + + async fn send(self: std::sync::Arc<Self>, _str: &str) { + todo!() + } +} |
