blob: 638698d8daf55929973de03b739fdd56b0a495eb (
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}))
|