mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-03-14 09:45:42 +00:00
15 lines
251 B
Haskell
15 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
|