graninas / Hydra

Hydra is a full-fledged framework for building web services, multithreaded and concurrent applications with SQL and KV DB support.
BSD 3-Clause "New" or "Revised" License
189 stars 13 forks source link

remove-unsed-imports-in-core remove unused imports in core #27

Closed yaitskov closed 4 years ago

yaitskov commented 4 years ago

Hydra project is positioned as blue print, but there are so many warnings.

I started to figuring out where Sqlite is mentioned and my grep results get polluted with unused Beam imports.

I wasn't able to find what is the correct way to handle following reexports. GHC complains anyway

module Hydra.Core.FTLI
  ( module X
  ) where

import           Hydra.Core.Lang.FTLI        as X
import           Hydra.Core.Logger.FTLI      as X
import           Hydra.Core.Process.FTLI     as X
import           Hydra.Core.Random.FTLI      as X
graninas commented 4 years ago

Thanks!