mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-04-02 20:16:10 +00:00
15 lines
345 B
Haskell
15 lines
345 B
Haskell
{-# LANGUAGE CPP #-}
|
|
|
|
module Simplex.Messaging.Agent.Store.Common
|
|
#if defined(dbPostgres)
|
|
( module Simplex.Messaging.Agent.Store.Postgres.Common,
|
|
)
|
|
where
|
|
import Simplex.Messaging.Agent.Store.Postgres.Common
|
|
#else
|
|
( module Simplex.Messaging.Agent.Store.SQLite.Common,
|
|
)
|
|
where
|
|
import Simplex.Messaging.Agent.Store.SQLite.Common
|
|
#endif
|