Spaces:
Running
Running
File size: 303 Bytes
947c08e |
1 2 3 4 5 6 7 8 9 10 11 12 |
import sys
if len(sys.argv) > 1 and not (sys.argv[1] in ['migrate', "makemigrations", "clear_all_sessions"]):
print("[Worker] Starting Thread...")
from backend.module.web_scrap import ColaManga
source_control = {
"colamanga": ColaManga
}
print("[Worker] Thread Started!")
|