Adding intitial DynamoDB setup and implementing ListTables target
This commit is contained in:
parent
7907585b65
commit
5086e6e590
6 changed files with 63 additions and 0 deletions
11
moto/dynamodb/models.py
Normal file
11
moto/dynamodb/models.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from moto.core import BaseBackend
|
||||
|
||||
class DynamoDBBackend(BaseBackend):
|
||||
|
||||
def __init__(self):
|
||||
self.tables = {}
|
||||
|
||||
def create_table(self, name):
|
||||
self.tables[name] = None
|
||||
|
||||
dynamodb_backend = DynamoDBBackend()
|
||||
Loading…
Add table
Add a link
Reference in a new issue