10 lines
154 B
Python
10 lines
154 B
Python
![]() |
from .base import BaseCommand
|
||
|
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
"""Backup a directory"""
|
||
|
name = "backup"
|
||
|
|
||
|
def run(self):
|
||
|
print("Backup!")
|