diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-27 16:39:04 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-27 21:00:40 +0100 |
commit | 13f549d68fb235522ae98bf04d2e09abdb1442ea (patch) | |
tree | 0d7c3c7e4ac58d6f8ee55a3e98ecac0ca0b1a317 /src/Run/Monad.hs | |
parent | 461a67cf2e6bea76dd7ad3e1636b68d061002e0d (diff) |
Refactor script/expression related code to multiple modules
Diffstat (limited to 'src/Run/Monad.hs')
-rw-r--r-- | src/Run/Monad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Run/Monad.hs b/src/Run/Monad.hs index 3fc511a..1c96c90 100644 --- a/src/Run/Monad.hs +++ b/src/Run/Monad.hs @@ -24,7 +24,7 @@ import {-# SOURCE #-} GDB import Network.Ip import Output import {-# SOURCE #-} Process -import Test +import Script.Expr newtype TestRun a = TestRun { fromTestRun :: ReaderT (TestEnv, TestState) (ExceptT Failed IO) a } deriving (Functor, Applicative, Monad, MonadReader (TestEnv, TestState), MonadIO) |