SimpleX-Chat/tests/ChatTests/DBUtils.hs

16 lines
251 B
Haskell
Raw Normal View History

{-# 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