mongrel2-handler-0.1.0: src/Mongrel2/Types.hs
module Mongrel2.Types
( ClientID
, UUID
) where
import Data.ByteString (ByteString)
import Data.Int (Int64)
-- | Client identifier from Mongrel2. This identifies the currently
-- connected client uniquely.
type ClientID = Int64
-- | UUID for communicating with Mongrel2.
type UUID = ByteString