vision-career/vacancies/main/management/commands/runbot.py
2025-10-25 10:44:22 +03:00

10 lines
216 B
Python

from django.core.management import BaseCommand
from vacancies.main.bot import application
class Command(BaseCommand):
help = "Run bot"
def handle(self, *args, **options):
application.run_polling()