summaryrefslogtreecommitdiff
path: root/examples/separate_worker/example_tasks.py
blob: 568b77c24a3f42a88e16f1f228657a1469b172c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
This module contains just the code for the scheduled task.
It should not be run directly.
"""

from __future__ import annotations

from datetime import datetime


def tick():
    print("Hello, the time is", datetime.now())