
cognitect.aws.http.cognitect.clj Maven / Gradle / Ivy
The newest version!
;; Copyright (c) Cognitect, Inc.
;; All rights reserved.
(ns ^:skip-wiki cognitect.aws.http.cognitect
(:require [cognitect.http-client :as impl]
[cognitect.aws.http :as aws]))
(set! *warn-on-reflection* true)
(defn create
[]
(let [c (impl/create {:follow-redirects false})]
(reify aws/HttpClient
(-submit [_ request channel]
(impl/submit c request channel))
(-stop [_]
(impl/stop c)))))
© 2015 - 2025 Weber Informatics LLC | Privacy Policy