Basisimplementierung für Mailversandt.
This commit is contained in:
parent
8505e9217a
commit
531b9cb10e
14 changed files with 520 additions and 41 deletions
|
|
@ -9,6 +9,9 @@ JOB_GRAPH: Dict[str, Dict[str, List[str]]] = {
|
|||
"CertValidity": ["MXValidation"],
|
||||
"MTASTSCheck": [],
|
||||
"TLSRPTCheck": [],
|
||||
},
|
||||
"MailSend": {
|
||||
"SendClean": [],
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -19,4 +22,4 @@ def list_tasks_for_job(job_type: str) -> List[str]:
|
|||
return list(JOB_GRAPH.get(job_type, {}).keys())
|
||||
|
||||
def list_dependencies(job_type: str, task_name: str) -> List[str]:
|
||||
return JOB_GRAPH.get(job_type, {}).get(task_name, [])
|
||||
return JOB_GRAPH.get(job_type, {}).get(task_name, [])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue