generated from tpl/purs
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user