From 72b0312b81742da2eee8f0e0fa7a6fd0aa412bd2 Mon Sep 17 00:00:00 2001 From: SongWei Date: Fri, 14 Feb 2020 01:03:03 +1100 Subject: [PATCH] remove benchmark --- server.lisp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/server.lisp b/server.lisp index 5091c40..ff86cc4 100644 --- a/server.lisp +++ b/server.lisp @@ -48,15 +48,7 @@ (defparameter +dispatch-table+ `(("^/$" ,#'route-hello-world) (,(concatenate 'string "^" +static-prefix+ ".*$") ,#'serve-static-file) - ("^/binary$" - ,(lambda (env) - (declare (ignore env)) - `(200 - (:content-type "text/plain") - ,(make-array 3 :element-type '(unsigned-byte 8) - :initial-contents '(51 52 53))))) - (nil nil))) - ;;(nil ,#'route-not-found))) + (nil ,#'route-not-found))) (require :sb-sprof)