Added missing Web/Restful.hs
This commit is contained in:
parent
cb963a6231
commit
b338a160f5
29
Web/Restful.hs
Normal file
29
Web/Restful.hs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---------------------------------------------------------
|
||||||
|
--
|
||||||
|
-- Module : Web.Restful
|
||||||
|
-- Copyright : Michael Snoyman
|
||||||
|
-- License : BSD3
|
||||||
|
--
|
||||||
|
-- Maintainer : Michael Snoyman <michael@snoyman.com>
|
||||||
|
-- Stability : Stable
|
||||||
|
-- Portability : portable
|
||||||
|
--
|
||||||
|
-- Lightweight framework for designing RESTful APIs.
|
||||||
|
--
|
||||||
|
---------------------------------------------------------
|
||||||
|
module Web.Restful
|
||||||
|
(
|
||||||
|
module Data.Object
|
||||||
|
, module Web.Restful.Request
|
||||||
|
, module Web.Restful.Response
|
||||||
|
, module Web.Restful.Application
|
||||||
|
, module Web.Restful.Definitions
|
||||||
|
, module Web.Restful.Handler
|
||||||
|
) where
|
||||||
|
|
||||||
|
import Data.Object
|
||||||
|
import Web.Restful.Request
|
||||||
|
import Web.Restful.Response
|
||||||
|
import Web.Restful.Application
|
||||||
|
import Web.Restful.Definitions
|
||||||
|
import Web.Restful.Handler
|
||||||
Loading…
Reference in New Issue
Block a user