12 lines
260 B
Python
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") |