Add BaseModel to all models.

This commit is contained in:
Steve Pulec 2017-03-11 23:41:12 -05:00
commit 6d422d1f37
34 changed files with 122 additions and 116 deletions

View file

@ -1,4 +1,4 @@
from __future__ import unicode_literals
from .models import BaseBackend, moto_api_backend # flake8: noqa
from .models import BaseModel, BaseBackend, moto_api_backend # flake8: noqa
moto_api_backends = {"global": moto_api_backend}