12 lines
286 B
Python
12 lines
286 B
Python
from airflow import DAG
|
|
from airflow.operators.dummy import DummyOperator
|
|
from datetime import datetime
|
|
|
|
with DAG(
|
|
dag_id="hello_world",
|
|
start_date=datetime(2025, 1, 1),
|
|
schedule_interval="@daily",
|
|
catchup=False,
|
|
) as dag:
|
|
task = DummyOperator(task_id="dummy_task")
|