From e651838f1993bd8bc6edf815deeac968ac9a53c0 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Thu, 16 Feb 2017 13:40:52 -0800 Subject: [PATCH] remove unused thing --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 5a0cacb..4c51613 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,6 @@ extern crate tokio_core; use tarpc::{client, server}; use tarpc::client::sync::Connect; use tarpc::util::{FirstSocketAddr, Never}; -use tokio_core::reactor; service! { rpc hello(name: String) -> String; @@ -71,7 +70,6 @@ impl SyncService for HelloServer { } fn main() { - let reactor = reactor::Core::new().unwrap(); let addr = HelloServer.listen("localhost:0".first_socket_addr(), server::Options::default()) .unwrap();