use crate::{ net::Client, server::Server, wire::{Request, Response}, }; use async_std::sync::{Receiver, Sender}; pub struct Handler { tx: Sender, } impl Handler { /// Start a message handler with a handle to send a reply back to the clients pub fn start(req: Request) { } }