Add basic CRUD.
This commit is contained in:
parent
ad80eba311
commit
aceb30e530
11 changed files with 453 additions and 0 deletions
12
moto/redshift/__init__.py
Normal file
12
moto/redshift/__init__.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from __future__ import unicode_literals
|
||||
from .models import redshift_backends
|
||||
from ..core.models import MockAWS
|
||||
|
||||
redshift_backend = redshift_backends['us-east-1']
|
||||
|
||||
|
||||
def mock_redshift(func=None):
|
||||
if func:
|
||||
return MockAWS(redshift_backends)(func)
|
||||
else:
|
||||
return MockAWS(redshift_backends)
|
||||
Loading…
Add table
Add a link
Reference in a new issue