1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
-----------------------------------------------------------------------------
-- |
-- Module : Aws.DynaboDb
-- Copyright : Ozgun Ataman, Soostone Inc.
-- License : BSD3
--
-- Maintainer : Ozgun Ataman <oz@soostone.com>
-- Stability : experimental
--
----------------------------------------------------------------------------
module Aws.DynamoDb
( module Aws.DynamoDb.Core
, module Aws.DynamoDb.Commands
) where
-------------------------------------------------------------------------------
import Aws.DynamoDb.Commands
import Aws.DynamoDb.Core
-------------------------------------------------------------------------------
|