1. from django.core.checks import Tags
    
  2. from django.core.management.base import BaseCommand
    
  3. 
    
  4. 
    
  5. class Command(BaseCommand):
    
  6.     requires_system_checks = [Tags.staticfiles, Tags.models]
    
  7. 
    
  8.     def handle(self, *args, **options):
    
  9.         pass