blob: 803822042afd4c841c72c5424c5dbd288d326ca1 (
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 <id@joeyh.name>
-
- 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
|