Skip to content

Instantly share code, notes, and snippets.

/build.boot Secret

Created March 14, 2017 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/0763262eebeb829611287ce4e58a1410 to your computer and use it in GitHub Desktop.
Save anonymous/0763262eebeb829611287ce4e58a1410 to your computer and use it in GitHub Desktop.
(set-env!
:source-paths #{"src/"}
:dependencies '[[io.pedestal/pedestal.service "0.5.1"]
[io.pedestal/pedestal.route "0.5.1"]
[io.pedestal/pedestal.jetty "0.5.1"]
[org.slf4j/slf4j-simple "1.7.2"]])
(ns fossacube.core
(:require [io.pedestal.http :as http]
[io.pedestal.route :as route]))
(defn respond-core [request]
{:status 200 :body "Hello, world!"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment