mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
16 lines
251 B
Haskell
16 lines
251 B
Haskell
|
{-# LANGUAGE CPP #-}
|
||
|
|
||
|
module ChatTests.DBUtils
|
||
|
|
||
|
#if defined(dbPostgres)
|
||
|
( module ChatTests.DBUtils.Postgres,
|
||
|
)
|
||
|
where
|
||
|
import ChatTests.DBUtils.Postgres
|
||
|
#else
|
||
|
( module ChatTests.DBUtils.SQLite,
|
||
|
)
|
||
|
where
|
||
|
import ChatTests.DBUtils.SQLite
|
||
|
#endif
|