lio-simple-0.0.2.0: LIO/Web/Simple/DCLabel.hs
{-# LANGUAGE Safe #-}
{- |
This module exports several types that makes it easier to write LIO
web apps with DCLabels.
-}
module LIO.Web.Simple.DCLabel (
DCController
, SimpleDCApplication
, SimpleDCMiddleware
) where
import safe LIO.DCLabel
import safe LIO.Web.Simple
type DCController a = LIOController DCLabel a
type SimpleDCApplication = SimpleLIOApplication CNF DCLabel
type SimpleDCMiddleware = SimpleLIOMiddleware CNF DCLabel