8 lines
138 B
Python
8 lines
138 B
Python
import frappe
|
|
from frappe.utils.scheduler import start_scheduler
|
|
|
|
print("Starting background scheduler . . .")
|
|
start_scheduler()
|
|
|
|
exit(0)
|