mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
10 lines
264 B
Haskell
10 lines
264 B
Haskell
module ChatTests.DBUtils.SQLite where
|
|
|
|
import Database.SQLite.Simple (Query)
|
|
import Simplex.Messaging.Agent.Store.SQLite.DB
|
|
import Simplex.Messaging.TMap (TMap)
|
|
|
|
data TestParams = TestParams
|
|
{ tmpPath :: FilePath,
|
|
queryStats :: TMap Query SlowQueryStats
|
|
}
|