blob: cb312f66deb7b895c5350c3f274a94bf285f2864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{- credentials
-
- Copyright 2014 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.Creds where
type Creds = String -- can be any data that contains credentials
type CredPair = (String, String) -- login, password
|