mirror of
https://github.com/Start9Labs/registry.git
synced 2026-03-26 02:11:53 +00:00
clean up unused imports
This commit is contained in:
@@ -26,7 +26,6 @@ import Yesod.Core.Types ( HandlerData(handlerEnv)
|
|||||||
)
|
)
|
||||||
import qualified Yesod.Core.Unsafe as Unsafe
|
import qualified Yesod.Core.Unsafe as Unsafe
|
||||||
|
|
||||||
import qualified Control.Monad.Logger.Extras as Extra
|
|
||||||
import Control.Monad.Logger.Extras ( wrapSGRCode )
|
import Control.Monad.Logger.Extras ( wrapSGRCode )
|
||||||
import Control.Monad.Reader.Has ( Has(extract, update) )
|
import Control.Monad.Reader.Has ( Has(extract, update) )
|
||||||
import Data.String.Interpolate.IsString
|
import Data.String.Interpolate.IsString
|
||||||
@@ -42,7 +41,6 @@ import System.Console.ANSI.Codes ( Color(..)
|
|||||||
, SGR(SetColor)
|
, SGR(SetColor)
|
||||||
)
|
)
|
||||||
import System.FilePath ( (</>) )
|
import System.FilePath ( (</>) )
|
||||||
import Yesod ( defaultMessageLoggerSource )
|
|
||||||
import Yesod.Persist.Core
|
import Yesod.Persist.Core
|
||||||
|
|
||||||
-- | The foundation datatype for your application. This can be a good place to
|
-- | The foundation datatype for your application. This can be a good place to
|
||||||
|
|||||||
@@ -51,18 +51,18 @@ import Startlude ( ($)
|
|||||||
, (<>)
|
, (<>)
|
||||||
, Bool(..)
|
, Bool(..)
|
||||||
, ByteString
|
, ByteString
|
||||||
, Down(Down)
|
, Down(..)
|
||||||
, Either(Left, Right)
|
, Either(..)
|
||||||
, Eq((==))
|
, Eq((==))
|
||||||
, Exception
|
, Exception
|
||||||
, FilePath
|
, FilePath
|
||||||
, IO
|
, IO
|
||||||
, Integer
|
, Integer
|
||||||
, Maybe(Just, Nothing)
|
, Maybe(..)
|
||||||
, MonadIO(liftIO)
|
, MonadIO(liftIO)
|
||||||
, MonadReader
|
, MonadReader
|
||||||
, Show
|
, Show
|
||||||
, SomeException(SomeException)
|
, SomeException(..)
|
||||||
, filter
|
, filter
|
||||||
, find
|
, find
|
||||||
, for_
|
, for_
|
||||||
@@ -70,7 +70,6 @@ import Startlude ( ($)
|
|||||||
, headMay
|
, headMay
|
||||||
, not
|
, not
|
||||||
, partitionEithers
|
, partitionEithers
|
||||||
, print
|
|
||||||
, pure
|
, pure
|
||||||
, show
|
, show
|
||||||
, sortOn
|
, sortOn
|
||||||
@@ -91,10 +90,8 @@ import System.FilePath ( (<.>)
|
|||||||
import UnliftIO ( MonadUnliftIO
|
import UnliftIO ( MonadUnliftIO
|
||||||
, askRunInIO
|
, askRunInIO
|
||||||
, async
|
, async
|
||||||
, mapConcurrently
|
|
||||||
, mapConcurrently_
|
, mapConcurrently_
|
||||||
, newEmptyMVar
|
, newEmptyMVar
|
||||||
, onException
|
|
||||||
, takeMVar
|
, takeMVar
|
||||||
, wait
|
, wait
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user