diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 2 | ||||
| -rw-r--r-- | src/server.rs | 4 | 
2 files changed, 3 insertions, 3 deletions
| @@ -14,7 +14,7 @@  //!  //!  //! fn main() { -//!     Server::start(handler).unwrap(); +//!     Server::start(handler);  //! }  //!  //! fn handler(_req: &mut dyn RequestExt) -> std::io::Result<Response<Body>> { diff --git a/src/server.rs b/src/server.rs index 95f8325..548d1a4 100644 --- a/src/server.rs +++ b/src/server.rs @@ -45,7 +45,7 @@ impl Server {      /// requests and handle them using `handler`.      ///      /// [fastcgi::run]: ../../fastcgi/fn.run.html -    pub fn start<H: Handler + 'static + Sync>(handler: H) -> io::Result<Server> { +    pub fn start<H: Handler + 'static + Sync>(handler: H) -> Server {          fastcgi::run(move |mut raw_request| {              match handle_request(&mut raw_request, &handler) {                  Ok(_) => (), @@ -68,7 +68,7 @@ impl Server {              }          }); -        Ok(Server{}) +        Server{}      }  } | 
