{- Copyright 2016 Joey Hess - - 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)