10 lines
159 B
Python
10 lines
159 B
Python
![]() |
from .base import BaseCommand
|
||
|
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
"""Cleanup old snapshots"""
|
||
|
name = "cleanup"
|
||
|
|
||
|
def run(self):
|
||
|
print("Cleanup!")
|