mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-05-11 06:06:59 +00:00
15 lines
320 B
Haskell
15 lines
320 B
Haskell
{-# LANGUAGE CPP #-}
|
|
|
|
module Simplex.Messaging.Agent.Store.Interface
|
|
#if defined(dbPostgres)
|
|
( module Simplex.Messaging.Agent.Store.Postgres,
|
|
)
|
|
where
|
|
import Simplex.Messaging.Agent.Store.Postgres
|
|
#else
|
|
( module Simplex.Messaging.Agent.Store.SQLite,
|
|
)
|
|
where
|
|
import Simplex.Messaging.Agent.Store.SQLite
|
|
#endif
|