13 lines
203 B
Python
13 lines
203 B
Python
|
|
import os
|
||
|
|
|
||
|
|
import django
|
||
|
|
|
||
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "MaChickenStore.settings")
|
||
|
|
|
||
|
|
django.setup()
|
||
|
|
|
||
|
|
from panel.ReportingPanel.views import delete_kill_req_cron
|
||
|
|
|
||
|
|
delete_kill_req_cron()
|
||
|
|
|