7 lines
No EOL
222 B
Python
7 lines
No EOL
222 B
Python
from django.core.management.base import BaseCommand
|
|
from django.core.cache import cache
|
|
|
|
class Command(BaseCommand):
|
|
def handle(self, *args, **kwargs):
|
|
cache.clear()
|
|
self.stdout.write('Cleared cache\n') |