diff options
Diffstat (limited to 'Annex/UUID.hs')
-rw-r--r-- | Annex/UUID.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Annex/UUID.hs b/Annex/UUID.hs index 5ed887689..ec642a0fe 100644 --- a/Annex/UUID.hs +++ b/Annex/UUID.hs @@ -23,6 +23,8 @@ module Annex.UUID ( storeUUID, storeUUIDIn, setUUID, + webUUID, + bitTorrentUUID, ) where import Common.Annex @@ -98,3 +100,11 @@ setUUID :: Git.Repo -> UUID -> IO Git.Repo setUUID r u = do let s = show configkey ++ "=" ++ fromUUID u Git.Config.store s r + +-- Dummy uuid for the whole web. Do not alter. +webUUID :: UUID +webUUID = UUID "00000000-0000-0000-0000-000000000001" + +-- Dummy uuid for bittorrent. Do not alter. +bitTorrentUUID :: UUID +bitTorrentUUID = UUID "00000000-0000-0000-0000-000000000002" |