Development of an internal social media platform with personalised dashboards for students
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.

app.py 269B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. """
  3. celery.loaders.app
  4. ~~~~~~~~~~~~~~~~~~
  5. The default loader used with custom app instances.
  6. """
  7. from __future__ import absolute_import
  8. from .base import BaseLoader
  9. __all__ = ['AppLoader']
  10. class AppLoader(BaseLoader):
  11. pass