pwncash/lib/Internal/Config.hs

12 lines
236 B
Haskell
Raw Normal View History

2022-12-11 17:51:11 -05:00
module Internal.Config
( readConfig
)
where
2022-12-11 17:51:11 -05:00
import Dhall hiding (record)
import Internal.Types.Main
2023-01-05 22:23:22 -05:00
import RIO
2022-12-11 17:51:11 -05:00
2023-01-05 22:23:22 -05:00
readConfig :: MonadUnliftIO m => FilePath -> m Config
readConfig confpath = liftIO $ unfix <$> inputFile auto confpath