lio-simple-0.0.0.1: 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 = LIOController DCLabel
type SimpleDCApplication = SimpleLIOApplication CNF DCLabel
type SimpleDCMiddleware = SimpleLIOMiddleware CNF DCLabel