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,12 @@
import os
from frappe.utils.background_jobs import start_worker
def main():
queue = os.environ.get("WORKER_TYPE", "default")
start_worker(queue, False)
exit(0)
if __name__ == "__main__":
main()