mirror of https://github.com/voidlizard/hbs2
27 lines
564 B
Haskell
27 lines
564 B
Haskell
module HBS2.CLI.Prelude
|
|
( module HBS2.Prelude.Plated
|
|
, module HBS2.OrDie
|
|
, module UnliftIO
|
|
, module Data.Config.Suckless
|
|
, module Data.HashMap.Strict
|
|
, module Control.Monad.Reader
|
|
, module HBS2.System.Logger.Simple.ANSI
|
|
, module HBS2.Misc.PrettyStuff
|
|
, qc,qq,q
|
|
, Generic
|
|
) where
|
|
|
|
import HBS2.Prelude.Plated
|
|
import HBS2.OrDie
|
|
import HBS2.System.Logger.Simple.ANSI
|
|
import HBS2.Misc.PrettyStuff
|
|
|
|
import Data.HashMap.Strict
|
|
import Data.Config.Suckless
|
|
|
|
import Control.Monad.Reader
|
|
import UnliftIO
|
|
|
|
import Text.InterpolatedString.Perl6 (qc,q,qq)
|
|
|