blob: 25196818224f692348c89f88e7c5e98fb37df15e (
plain)
1
2
3
4
5
6
7
8
9
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 ()
|