14 lines
332 B
Python
14 lines
332 B
Python
# plugins/utility/__init__.py
|
|
|
|
def register_cli(app):
|
|
# no CLI commands for now
|
|
pass
|
|
|
|
def init_celery(app):
|
|
# Called via plugin.json entry_point
|
|
from .celery import init_celery as _init, celery_app
|
|
_init(app)
|
|
# Attach it if you like: app.celery = celery_app
|
|
app.celery = celery_app
|
|
return celery_app
|