rename Env.hs -> Env/SQLite.hs

This commit is contained in:
Evgeny Poberezkin
2020-12-26 13:01:57 +00:00
parent 027b91098d
commit 501e8a140a
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
module Main where
import Simplex.Messaging.Agent (runSMPAgent)
import Simplex.Messaging.Agent.Env
import Simplex.Messaging.Agent.Env.SQLite
cfg :: AgentConfig
cfg =

View File

@@ -10,7 +10,7 @@ import Control.Monad.IO.Unlift
import Control.Monad.Reader
import Crypto.Random
import Simplex.Messaging.Agent.Command
import Simplex.Messaging.Agent.Env
import Simplex.Messaging.Agent.Env.SQLite
import Simplex.Messaging.Transport
import UnliftIO.Async
import UnliftIO.IO

View File

@@ -3,7 +3,7 @@
{-# LANGUAGE NamedFieldPuns #-}
{-# OPTIONS_GHC -fno-warn-unticked-promoted-constructors #-}
module Simplex.Messaging.Agent.Env where
module Simplex.Messaging.Agent.Env.SQLite where
import Control.Monad.IO.Unlift
import Crypto.Random