pub async fn start_server<T: ServerConn + Send + 'static>( address: impl ToSocketAddrs, ) -> Result<()>
78async fn main() { 79 let _ = start_server::<ServerInstance>("127.0.0.1:8000").await; 80}