Make all exports explicit

This commit is contained in:
2019-07-14 05:58:05 +02:00
parent eb40810f25
commit f3b8d9b74c
14 changed files with 116 additions and 43 deletions

View File

@ -1,5 +1,21 @@
{-# LANGUAGE OverloadedStrings #-}
module Test.StarWars.Data where
module Test.StarWars.Data
( Character
, appearsIn
, artoo
, getDroid
, getDroid'
, getEpisode
, getFriends
, getHero
, getHeroIO
, getHuman
, id_
, homePlanet
, name
, secretBackstory
, typeName
) where
import Data.Monoid (mempty)
import Control.Applicative ( Alternative(..)

View File

@ -1,6 +1,12 @@
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
module Test.StarWars.Schema where
module Test.StarWars.Schema
( character
, droid
, hero
, human
, schema
) where
import Control.Monad.Trans.Except (throwE)
import Control.Monad.Trans.Class (lift)