celeryctl.py 323 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. """
  3. celery.bin.celeryctl
  4. ~~~~~~~~~~~~~~~~~~~~
  5. Now replaced by the :program:`celery` command.
  6. """
  7. from __future__ import absolute_import
  8. from celery.bin.celery import ( # noqa
  9. CeleryCommand as celeryctl, Command, main,
  10. )
  11. if __name__ == '__main__': # pragma: no cover
  12. main()