(ns dummy-auth.oauth2.token (:require [ring.util.response :as ruresp])) (defn handle [_req] (println "oauth2/token: responding...") (ruresp/response {"access_token" "abc" "refresh_token" "abc" "token_type" "Bearer" "expires" 0}))