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