SimpleX-Chat/tests/ChatTests/DBUtils/SQLite.hs

13 lines
343 B
Haskell
Raw Normal View History

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,
2025-01-24 17:49:31 +04:00
chatQueryStats :: TMap Query SlowQueryStats,
agentQueryStats :: TMap Query SlowQueryStats
}