summaryrefslogtreecommitdiff
path: root/src/chef/core.clj
blob: 86aeb17ae6e690ff3c7d8cba927e16ee14e5d833 (plain)
1
2
3
4
5
6
7
8
(ns chef.core
  (:require [org.httpkit.server :as http-server]
            [chef.routes :as croutes])
  (:gen-class))

(defn -main [& args]
  (println "Starting http server...")
  (http-server/run-server croutes/ring-handler {:port 8080}))