Add cabal.project to build with the correct flags

This commit is contained in:
2022-01-15 11:50:20 +01:00
parent 82b21bece8
commit 396b480806
8 changed files with 24 additions and 9 deletions

View File

@ -0,0 +1,5 @@
module Language.GraphQL.Foundation
( module Language.GraphQL.Serialize
) where
import Language.GraphQL.Serialize

View File

@ -0,0 +1,7 @@
module Language.GraphQL.Serialize
( JSON(..)
) where
import qualified Data.Aeson as Aeson
newtype JSON = JSON Aeson.Value