Files
003-fleet-management/001.BACKEND/kupci/management/commands/hello_world.py
2026-05-20 21:24:00 +02:00

8 lines
184 B
Python

from typing import Any
from django.core.management.base import BaseCommand
class Command(BaseCommand):
def handle(self, *args: Any, **options: Any):
print("hello world")