Blame


1 d8c72311 2021-10-12 op (ns blog.net-gemini
2 10c8a6d2 2021-10-13 op (:import (com.omarpolo.gemini Request)))
3 d8c72311 2021-10-12 op
4 d8c72311 2021-10-12 op (defn head [host port req]
5 10c8a6d2 2021-10-13 op (with-open [res (Request. host port (str req "\r\n"))]
6 d8c72311 2021-10-12 op {:code (.getCode res)
7 d8c72311 2021-10-12 op :meta (.getMeta res)}))
8 10c8a6d2 2021-10-13 op
9 10c8a6d2 2021-10-13 op (comment
10 10c8a6d2 2021-10-13 op (with-open [res (Request. "gemini://localhost/index.gmi")]
11 10c8a6d2 2021-10-13 op {:code (.getCode res)
12 10c8a6d2 2021-10-13 op :meta (.getMeta res)})
13 10c8a6d2 2021-10-13 op )