10 lines
321 B
Python
10 lines
321 B
Python
from __future__ import unicode_literals
|
|
|
|
from .models import BaseModel, BaseBackend, moto_api_backend, ACCOUNT_ID # noqa
|
|
from .responses import ActionAuthenticatorMixin
|
|
|
|
moto_api_backends = {"global": moto_api_backend}
|
|
set_initial_no_auth_action_count = (
|
|
ActionAuthenticatorMixin.set_initial_no_auth_action_count
|
|
)
|