Ensure module-loading format follows purescript convention (#11)

This commit is contained in:
Connor Prussin 2017-05-25 12:19:56 -07:00 committed by GitHub
parent 0e6cb596b8
commit 1bf6ca2c4d

View File

@ -1,10 +1,10 @@
module HTTPure (
module HTTPure.HTTPureM,
module HTTPure.Server,
module HTTPure.Request,
module HTTPure.Response,
module HTTPure.Route
) where
module HTTPure
( module HTTPure.HTTPureM
, module HTTPure.Server
, module HTTPure.Request
, module HTTPure.Response
, module HTTPure.Route
) where
import HTTPure.HTTPureM (HTTPureM)
import HTTPure.Server (serve)