8 lines
184 B
Python
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") |