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.

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