Skip to content

Instantly share code, notes, and snippets.

@swlkr
Last active January 9, 2018 07:07
Show Gist options
  • Select an option

  • Save swlkr/1e59a024e31f780ebbe416f45d2a157e to your computer and use it in GitHub Desktop.

Select an option

Save swlkr/1e59a024e31f780ebbe416f45d2a157e to your computer and use it in GitHub Desktop.
(ns simple
(:require [coast.core :as coast]))
(defn home [request]
(coast/ok "You're coasting on clojure!"))
(def app (-> (coast/get "/" home)
(coast/wrap-coast-defaults)))
(defn -main []
(coast/start-server app {:port 1337}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment