7 lines
174 B
Python
7 lines
174 B
Python
from app.utils.tasks import huey
|
|
from app import create_app
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
print("Run `huey_consumer.py run_huey.huey` to start worker!") |