Skip to content

Commit

Permalink
Export MonadCassandra also from JSON module
Browse files Browse the repository at this point in the history
  • Loading branch information
ozataman committed Mar 7, 2012
1 parent 434e080 commit dbdb49d
Showing 1 changed file with 33 additions and 30 deletions.
63 changes: 33 additions & 30 deletions src/Database/Cassandra/JSON.hs
Expand Up @@ -19,37 +19,40 @@
-}

module Database.Cassandra.JSON
(
(

-- * Connection
CPool
, Server(..)
, defServer
, defServers
, KeySpace(..)
, createCassandraPool

-- * Cassandra Operations
, get
, getCol
, getMulti
, insertCol
, modify
, modify_
, delete

-- * Necessary Types
, CKey(..)
, ModifyOperation(..)
, ColumnFamily(..)
, ConsistencyLevel(..)
, CassandraException(..)
, Selector(..)
, KeySelector(..)



) where
-- * Connection
CPool
, Server(..)
, defServer
, defServers
, KeySpace(..)
, createCassandraPool

-- * MonadCassandra Typeclass
, MonadCassandra (..)
, Cas (..)
, runCas

-- * Cassandra Operations
, get
, getCol
, getMulti
, insertCol
, modify
, modify_
, delete

-- * Necessary Types
, CKey(..)
, ModifyOperation(..)
, ColumnFamily(..)
, ConsistencyLevel(..)
, CassandraException(..)
, Selector(..)
, KeySelector(..)

) where


import Control.Exception
Expand Down

0 comments on commit dbdb49d

Please sign in to comment.