From cb1c5e8748d1ad9b87fa349d40522157dd962479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Varela?= Date: Fri, 9 Feb 2024 12:05:43 +0200 Subject: [PATCH] made openapi clj, not cljc --- modules/reitit-openapi/src/reitit/{openapi.cljc => openapi.clj} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename modules/reitit-openapi/src/reitit/{openapi.cljc => openapi.clj} (99%) diff --git a/modules/reitit-openapi/src/reitit/openapi.cljc b/modules/reitit-openapi/src/reitit/openapi.clj similarity index 99% rename from modules/reitit-openapi/src/reitit/openapi.cljc rename to modules/reitit-openapi/src/reitit/openapi.clj index 7d3a3b45..8e49de77 100644 --- a/modules/reitit-openapi/src/reitit/openapi.cljc +++ b/modules/reitit-openapi/src/reitit/openapi.clj @@ -211,5 +211,5 @@ ([req res raise] (try (res (create-openapi req)) - (catch #?(:clj Exception :cljs :default) e + (catch Exception e (raise e))))))