git-annex/Types/CleanupActions.hs

18 lines
311 B
Haskell
Raw Normal View History

2014-03-13 23:06:26 +00:00
{- Enumeration of cleanup actions
-
- Copyright 2014 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.CleanupActions where
import Types.UUID
data CleanupAction
= RemoteCleanup UUID
| StopHook UUID
| FsckCleanup
| SshCachingCleanup
2014-03-13 23:06:26 +00:00
deriving (Eq, Ord)