From bccb3bd15964f72109d71f66d032a26d02b7154e Mon Sep 17 00:00:00 2001 From: Fujimura Daisuke Date: Sun, 2 Mar 2014 14:55:15 +0900 Subject: [PATCH] Do explicit import in Example.hs This will be helpful for the people who is new to this library. --- doc/Example.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Example.hs b/doc/Example.hs index cf244e3..9908cff 100644 --- a/doc/Example.hs +++ b/doc/Example.hs @@ -1,6 +1,9 @@ {-# LANGUAGE OverloadedStrings, ExtendedDefaultRules #-} -import Database.MongoDB +import Database.MongoDB (Action, Document, Document, Value, access, + close, connect, delete, exclude, find, + host, insertMany, master, project, rest, + runIOE, select, sort, (=:)) import Control.Monad.Trans (liftIO) main :: IO ()