diff --git a/main.fnl b/main.fnl index 1bd655d..d44dcc5 100644 --- a/main.fnl +++ b/main.fnl @@ -33,8 +33,6 @@ false) (out:write_chunk text true)) -(fn not-found [out] (send-error out 404 "not found")) - (fn slurp [filename] (with-open [f (io.open filename "r")] (f:read "*a"))) @@ -79,7 +77,7 @@ "/sign" (handle-sign-csr out) _ - (not-found out)))) + (send-error out 404 "not found")))) (fn new-server []