summaryrefslogtreecommitdiff
path: root/Types/Group.hs
blob: dd06cbfd76f3d755d8adebcc563964989497e376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{- git-annex repo groups
 -
 - Copyright 2012 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Types.Group (
	Group,
	GroupMap
) where

import Types.UUID

import qualified Data.Map as M
import qualified Data.Set as S

type Group = String

type GroupMap = M.Map UUID (S.Set Group)