11 lines
176 B
Python
11 lines
176 B
Python
|
|
import os
|
||
|
|
import django
|
||
|
|
|
||
|
|
|
||
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "KuChicken.settings")
|
||
|
|
|
||
|
|
django.setup()
|
||
|
|
from ticket.views import bot_eitaa_for_bar
|
||
|
|
|
||
|
|
bot_eitaa_for_bar()
|