blob: f8e28ff7ea3ec31dd0fc178108249c6f7e594d67 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Say hello."
args = ""
output_transaction = True
def handle(self, *args, **options):
return "Hello!"
|