cabal-install-3.6.0.0: src/Distribution/Client/Types/Credentials.hs
module Distribution.Client.Types.Credentials (
Username (..),
Password (..),
) where
import Prelude (String)
newtype Username = Username { unUsername :: String }
newtype Password = Password { unPassword :: String }