Created
April 21, 2021 09:03
-
-
Save anandtripathi5/63883a8422bcba01b7d3f80a9f0de109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from celery import Celery | |
import celery_config | |
app = Celery(__name__) | |
app.config_from_object(celery_config) | |
@app.task() | |
def random_task(): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment