mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 20:45:49 +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
|