(parse-param path)
Parses the query parameter of a path of the form "/reflect?var=foo" into the vector ["var" "foo"].
(defn parse-param [path] (-> (str/split path #"\?") (last) (str/split #"=")))