This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
{-| Blockfrost proxy that injects the auth header with the API key | |
into all requests | |
-} | |
module Wst.Server.BlockfrostProxy( | |
BlockfrostProxy, | |
runBlockfrostProxy | |
) where | |
import Control.Exception (bracket_) |
OlderNewer