packages feed

keysafe-0.20160914: Types/Server.hs

{- Copyright 2016 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU AGPL version 3 or higher.
 -}

module Types.Server where

import Network.Wai.Handler.Warp (Port)

type HostName = String

data Server = Server
	{ serverName :: HostName
	, serverPort :: Port
	}
	deriving (Show)