mirror of
https://github.com/quantum9Innovation/suntheme.git
synced 2025-02-22 10:31:11 -08:00
7 lines
185 B
Haskell
7 lines
185 B
Haskell
module Getters where
|
|
|
|
import Control.Exception (SomeException, try)
|
|
import Network.HTTP.Request (Response, get)
|
|
|
|
fetch :: String -> IO (Either SomeException Response)
|
|
fetch = try . get
|