chore: Move files from build/common

This commit is contained in:
Lev
2021-11-05 20:00:11 +03:00
parent 915885bb05
commit c808ad1767
23 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
from frappe.utils.scheduler import start_scheduler
def main():
print("Starting background scheduler . . .")
start_scheduler()
exit(0)
if __name__ == "__main__":
main()