summaryrefslogtreecommitdiff
path: root/init.fnl
blob: f14817e6f8d2272b1a177e6d68da774188767679 (plain)
1
2
3
4
5
6
7
8
9
(local fennel (require :fennel))
{
  :routes {
    :/ (fn [method path headers body]
         (values 200 { :content-type "applicaton/json" }
                 "{ \"test\": 123 }"))
    ; :/test (fn [] "test?")
  }
}