2014-02-11 18:06:50 +00:00
|
|
|
{- credentials
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2014 Joey Hess <id@joeyh.name>
|
2014-02-11 18:06:50 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.Creds where
|
|
|
|
|
|
|
|
type Creds = String -- can be any data that contains credentials
|
|
|
|
|
2014-04-29 22:01:14 +00:00
|
|
|
type CredPair = (Login, Password)
|
|
|
|
type Login = String
|
2016-11-21 21:27:38 +00:00
|
|
|
type Password = String
|