20 lines
495 B
Haskell
20 lines
495 B
Haskell
---------------------------------------------------------
|
|
--
|
|
-- Module : Web.Restful.Constants
|
|
-- Copyright : Michael Snoyman
|
|
-- License : BSD3
|
|
--
|
|
-- Maintainer : Michael Snoyman <michael@snoyman.com>
|
|
-- Stability : Stable
|
|
-- Portability : portable
|
|
--
|
|
-- Constants used throughout Restful.
|
|
--
|
|
---------------------------------------------------------
|
|
module Web.Restful.Constants
|
|
( authCookieName
|
|
) where
|
|
|
|
authCookieName :: String
|
|
authCookieName = "IDENTIFIER"
|