fix: use explicit imports in re-export modules (#1)

Fixes ImplicitQualifiedImport warnings that occur when using this
package as a dependency. The censorProjectWarnings setting only
suppresses warnings during the package's own build, not when the
package is consumed by other projects.

Co-authored-by: Yura Lazarev <Unisay@users.noreply.github.com>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Yura
2026-01-28 16:44:33 +01:00
committed by orion kindel
parent 65c3a3c902
commit f0fd42ceb6
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
module Control.Monad.Postgres (module X) where
import Control.Monad.Postgres.Cursor as X
import Control.Monad.Postgres.Session as X
import Control.Monad.Postgres.Base as X
import Control.Monad.Postgres.Cursor (class MonadCursor, CursorT(..), Move(..), fetch, fetchAll, fetchOne, move) as X
import Control.Monad.Postgres.Session (class MonadSession, class MonadStartSession, SessionT, endSession, exec, exec_, handleStream, onErrorOrClose, query, startSession, streamIn, streamOut) as X
import Control.Monad.Postgres.Base (class MonadPostgres, PostgresT, cursor, cursorWith, runPostgres, session, transaction, withPool) as X

View File

@@ -1,5 +1,5 @@
module Effect.Postgres.Error (module X) where
import Effect.Postgres.Error.Common as X
import Effect.Postgres.Error.Common (E, Error(..), toException, toException', toString) as X
import Effect.Postgres.Error.RE (RE(..), ParRE(..)) as X
import Effect.Postgres.Error.Except (Except) as X