git-annex/Types/Creds.hs

15 lines
291 B
Haskell
Raw Normal View History

{- credentials
-
- Copyright 2014 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU AGPL version 3 or higher.
-}
module Types.Creds where
type Creds = String -- can be any data that contains credentials
type CredPair = (Login, Password)
type Login = String
type Password = String