mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
9 lines
160 B
Python
9 lines
160 B
Python
from django.core.management import call_command
|
|
|
|
from config.celery import app
|
|
|
|
|
|
@app.task
|
|
def fetch_slack_activity():
|
|
call_command("fetch_slack_activity")
|