Add cabal.project to build with the correct flags
This commit is contained in:
parent
82b21bece8
commit
396b480806
8 changed files with 24 additions and 9 deletions
src/Language
|
@ -1,3 +0,0 @@
|
|||
module Language.GraphQL
|
||||
(
|
||||
) where
|
5
src/Language/GraphQL/Foundation.hs
Normal file
5
src/Language/GraphQL/Foundation.hs
Normal file
|
@ -0,0 +1,5 @@
|
|||
module Language.GraphQL.Foundation
|
||||
( module Language.GraphQL.Serialize
|
||||
) where
|
||||
|
||||
import Language.GraphQL.Serialize
|
7
src/Language/GraphQL/Serialize.hs
Normal file
7
src/Language/GraphQL/Serialize.hs
Normal file
|
@ -0,0 +1,7 @@
|
|||
module Language.GraphQL.Serialize
|
||||
( JSON(..)
|
||||
) where
|
||||
|
||||
import qualified Data.Aeson as Aeson
|
||||
|
||||
newtype JSON = JSON Aeson.Value
|
Loading…
Add table
Add a link
Reference in a new issue