You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. from oscar.apps.analytics.abstract_models import (AbstractProductRecord, AbstractUserRecord,
  2. AbstractUserProductView, AbstractUserSearch)
  3. class ProductRecord(AbstractProductRecord):
  4. pass
  5. class UserRecord(AbstractUserRecord):
  6. pass
  7. class UserProductView(AbstractUserProductView):
  8. pass
  9. class UserSearch(AbstractUserSearch):
  10. pass
  11. # Import receiver functions
  12. from oscar.apps.analytics.receivers import *