11 lines
286 B
Python
11 lines
286 B
Python
from django.core.management.base import BaseCommand
|
|
from django.core.cache import cache
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Clear the cache'
|
|
|
|
def handle(self, *args, **options):
|
|
cache.clear()
|
|
self.stdout.write(self.style.SUCCESS('Cache cleared successfully'))
|