DAG Config File

Define the task and the order. For example it can look like something like this:

task {
	name: "my task"
	input: {
		url: "google.com"
	}
	output: {
		file
	}
	next: "my task 2"
}