diff options
author | Tim <contact@bytim.eu> | 2025-04-20 23:26:33 +0200 |
---|---|---|
committer | Tim <contact@bytim.eu> | 2025-04-20 23:26:33 +0200 |
commit | b13e679aa5370d1e27cf7037e0f0a325bdf018cc (patch) | |
tree | 9500db409987bc84ce7a2659bb7a341ca451d24b /src/pics/handler | |
download | pics-b13e679aa5370d1e27cf7037e0f0a325bdf018cc.tar.xz pics-b13e679aa5370d1e27cf7037e0f0a325bdf018cc.zip |
Initial commit
Diffstat (limited to 'src/pics/handler')
-rw-r--r-- | src/pics/handler/home.clj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pics/handler/home.clj b/src/pics/handler/home.clj new file mode 100644 index 0000000..a02ec33 --- /dev/null +++ b/src/pics/handler/home.clj @@ -0,0 +1,5 @@ +(ns pics.handler.home + (:require [ring.util.response :as ruresp])) + +(defn handle [req] + (ruresp/not-found "Coming soon...")) |