From c600b863850e69f11fc25c8c66f407fa42359e86 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 25 Jul 2021 00:18:06 +0100 Subject: [PATCH] wip client (notes) Signed-off-by: Ian Jackson --- src/bin/client.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/bin/client.rs b/src/bin/client.rs index d4132ea..b278f1e 100644 --- a/src/bin/client.rs +++ b/src/bin/client.rs @@ -4,8 +4,17 @@ use hippotat::prelude::*; +/* +struct Client { + requests_outstanding: Vec<>, + tx_read_stream: something, + rx_write_stream: something, +}*/ + #[throws(AE)] fn main() { let instances = config::read(LinkEnd::Client)?; + + eprintln!("{:#?}", &instances); } -- 2.30.2