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