Replaces the "API server listening on unix socket" with simpler "API server listening on " observation. This allows refactoring redundant code. Signed-off-by: Taimoor Zaeem <taimoorzaeem@gmail.com>
27 lines
624 B
Haskell
27 lines
624 B
Haskell
module Main (main) where
|
|
|
|
import Test.DocTest (doctest)
|
|
|
|
import Protolude
|
|
|
|
|
|
main :: IO ()
|
|
main =
|
|
doctest
|
|
[ "-XOverloadedStrings"
|
|
, "-XNoImplicitPrelude"
|
|
, "-XStandaloneDeriving"
|
|
, "-XDuplicateRecordFields"
|
|
, "-isrc"
|
|
, "src/PostgREST/ApiRequest/Preferences.hs"
|
|
, "src/PostgREST/ApiRequest/QueryParams.hs"
|
|
, "src/PostgREST/Config.hs"
|
|
, "src/PostgREST/Error.hs"
|
|
, "src/PostgREST/MediaType.hs"
|
|
, "src/PostgREST/Network.hs"
|
|
, "src/PostgREST/Plan.hs"
|
|
, "src/PostgREST/Query/SqlFragment.hs"
|
|
, "src/PostgREST/Response.hs"
|
|
, "src/PostgREST/Response/Performance.hs"
|
|
]
|