blob: c7d411cdcfbe3501ee0a6b01ee88c00da43926bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{- 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
|