diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/small.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/small.rs b/examples/small.rs index 160bd6a..83ce00a 100644 --- a/examples/small.rs +++ b/examples/small.rs @@ -3,7 +3,7 @@ use fastcgi_conduit::Server; fn main() { - Server::start(handler).unwrap(); + Server::start(handler); } fn handler(_req: &mut dyn RequestExt) -> std::io::Result<Response<Body>> { |