Files
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")