2021-05-02 21:48:42 +02:00

12 lines
260 B
Python

from django.apps import AppConfig
class AppBeConfig(AppConfig):
name = 'app_be'
def ready(self):
from app_be.views.twitter_bot import twitter_bot
twitter_bot1 = twitter_bot()
twitter_bot1.start()
print("bot started")