Files
fleet-template.008/001.BACKEND/kupci/management/commands/hello_world.py
2026-05-31 19:21:25 +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")