blob: eb3497fa94cbad3933186f0d049e9cede70eb27f (
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 Types.UUID where
-- might be nice to have a newtype, but lots of stuff treats uuids as strings
type UUID = String
|