git-annex/Types/LockPool.hs

17 lines
298 B
Haskell
Raw Normal View History

{- git-annex lock pool data types
-
- Copyright 2014 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.LockPool (
LockPool,
LockHandle
) where
import qualified Data.Map as M
import Utility.LockFile
type LockPool = M.Map FilePath LockHandle