Files
airflow-dags/.history/testpostgre_20250905160615.py
Выдрин Сергей 3373ffcea8 f
2025-09-05 16:06:27 +03:00

12 lines
294 B
Python

from airflow import DAG
from airflow.operators.dummy import DummyOperator
from datetime import datetime
with DAG(
dag_id="hello_world_postgre",
start_date=datetime(2025, 1, 1),
schedule_interval="@daily",
catchup=False,
) as dag:
task = DummyOperator(task_id="dummy_task")