diff options
author | Paul Oliver <contact@pauloliver.dev> | 2025-08-20 19:10:16 +0000 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2025-08-23 22:59:12 +0000 |
commit | 82b02509150b615360118ca381ad8c9fd39d2f29 (patch) | |
tree | 97118f30a334a7b1fc9b6b7f6a8bbcbc87ae5aeb /hsm-repl/Test | |
parent | dea39a25938662e6af932bc9a957073d8364dde1 (diff) |
Falls back to `bracket` unless `releaseEff` is needed
Diffstat (limited to 'hsm-repl/Test')
-rw-r--r-- | hsm-repl/Test/Repl.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hsm-repl/Test/Repl.hs b/hsm-repl/Test/Repl.hs index 9052ef1..3b0e534 100644 --- a/hsm-repl/Test/Repl.hs +++ b/hsm-repl/Test/Repl.hs @@ -2,7 +2,6 @@ import Control.Monad (void) import Control.Monad.Loops (whileJust_) import Data.Function ((&)) import Effectful (runEff) -import Effectful.Resource (runResource) import Hsm.Log (Severity (Trace), runLog) import Hsm.Repl (repl, runRepl) @@ -11,5 +10,4 @@ main = void (whileJust_ repl return) & runRepl @"exec-repl λ " @'["Prelude"] @[Bool] & runLog @"repl" Trace - & runResource & runEff |