moto/moto/rds2/__init__.py
2019-10-31 10:36:05 -07:00

8 lines
291 B
Python

from __future__ import unicode_literals
from .models import rds2_backends
from ..core.models import base_decorator, deprecated_base_decorator
rds2_backend = rds2_backends["us-west-1"]
mock_rds2 = base_decorator(rds2_backends)
mock_rds2_deprecated = deprecated_base_decorator(rds2_backends)