diff options
author | Tim <contact@bytim.eu> | 2024-12-31 16:23:46 +0100 |
---|---|---|
committer | Tim <contact@bytim.eu> | 2024-12-31 16:23:46 +0100 |
commit | 5314290bbec53379372d14234fdc4f28cbe3286a (patch) | |
tree | 32bcb32e394873692d16ff7d2c436a71acf2f6b3 /src/dummy_auth/error.clj | |
download | dummy-auth-5314290bbec53379372d14234fdc4f28cbe3286a.tar.xz dummy-auth-5314290bbec53379372d14234fdc4f28cbe3286a.zip |
Initial commit
Diffstat (limited to 'src/dummy_auth/error.clj')
-rw-r--r-- | src/dummy_auth/error.clj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dummy_auth/error.clj b/src/dummy_auth/error.clj new file mode 100644 index 0000000..d09ec59 --- /dev/null +++ b/src/dummy_auth/error.clj @@ -0,0 +1,5 @@ +(ns dummy-auth.error + (:require [ring.util.response :as ruresp])) + +(defn handle [_req] + (ruresp/response "An error occurred while processing your request.")) |