diff options
Diffstat (limited to 'lib/Patat/Cleanup.hs')
-rw-r--r-- | lib/Patat/Cleanup.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Patat/Cleanup.hs b/lib/Patat/Cleanup.hs new file mode 100644 index 0000000..2519681 --- /dev/null +++ b/lib/Patat/Cleanup.hs @@ -0,0 +1,10 @@ +-------------------------------------------------------------------------------- +-- | Defines a cleanup action that needs to be run after we're done with a slide +-- or image. +module Patat.Cleanup + ( Cleanup + ) where + + +-------------------------------------------------------------------------------- +type Cleanup = IO () |