| 12345678910111213141516171819202122 |
- from oscar.apps.analytics.abstract_models import (AbstractProductRecord, AbstractUserRecord,
- AbstractUserProductView, AbstractUserSearch)
-
-
- class ProductRecord(AbstractProductRecord):
- pass
-
-
- class UserRecord(AbstractUserRecord):
- pass
-
-
- class UserProductView(AbstractUserProductView):
- pass
-
-
- class UserSearch(AbstractUserSearch):
- pass
-
-
- # Import receiver functions
- from oscar.apps.analytics.receivers import *
|