mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 14:06:05 +00:00
14 lines
370 B
Haskell
14 lines
370 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,
|
|
printOutput :: Bool,
|
|
chatQueryStats :: TMap Query SlowQueryStats,
|
|
agentQueryStats :: TMap Query SlowQueryStats,
|
|
largeLinkData :: Bool
|
|
}
|