From 0f673b9b4dc6d1ab53dba0afa347479f86a0308c Mon Sep 17 00:00:00 2001 From: Danny Navarro Date: Sat, 12 Sep 2015 15:16:28 +0200 Subject: [PATCH] Rename module `Data.GraphQL` -> `Data.GraphQL.AST` --- Data/{GraphQL.hs => GraphQL/AST.hs} | 2 +- graphql.cabal | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename Data/{GraphQL.hs => GraphQL/AST.hs} (99%) diff --git a/Data/GraphQL.hs b/Data/GraphQL/AST.hs similarity index 99% rename from Data/GraphQL.hs rename to Data/GraphQL/AST.hs index d878022..cf4041a 100644 --- a/Data/GraphQL.hs +++ b/Data/GraphQL/AST.hs @@ -1,4 +1,4 @@ -module Data.GraphQL where +module Data.GraphQL.AST where import Data.Text (Text) diff --git a/graphql.cabal b/graphql.cabal index f653731..2319318 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -1,6 +1,6 @@ name: graphql version: 0.1 -synopsis: GraphQL Haskell implementation +synopsis: Haskell GraphQL implementation description: For now this package provides the data types for the GraphQL language. Further releases will cover more aspects of the GraphQL specification. @@ -17,7 +17,7 @@ extra-source-files: README.md CHANGELOG.md stack.yaml cabal-version: >=1.10 library - exposed-modules: Data.GraphQL + exposed-modules: Data.GraphQL.AST build-depends: base >= 4.7 && < 5, text >=0.11.3.1 default-language: Haskell2010