blob: 8e207b444ecba47bcc3d2d7d3841c5cf65ab7e2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{- git-annex UUID type
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module UUIDType where
-- might be nice to have a newtype, but lots of stuff treats uuids as strings
type UUID = String
|