diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2022-12-20 21:21:30 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2022-12-20 21:21:30 +0100 |
commit | a5f0062f48fba018e7de8b5a3c0799381e535572 (patch) | |
tree | 985e7bd3f4ed045f352a11cc29831c717450fc24 /src/GDB.hs-boot | |
parent | 739d8e3f7b2e418a17e13c908aefcbb4c6c150f6 (diff) |
Move TestRun monad and related types to separate module
Diffstat (limited to 'src/GDB.hs-boot')
-rw-r--r-- | src/GDB.hs-boot | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/GDB.hs-boot b/src/GDB.hs-boot new file mode 100644 index 0000000..608ba7c --- /dev/null +++ b/src/GDB.hs-boot @@ -0,0 +1,6 @@ +module GDB where + +import Output + +data GDB +gdbSession :: MonadOutput m => GDB -> m () |