mirror of
https://github.com/jaspervdj/patat.git
synced 2024-11-25 22:31:45 +03:00
11 lines
326 B
Haskell
11 lines
326 B
Haskell
--------------------------------------------------------------------------------
|
|
-- | 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 ()
|