Skeleton for commands

This commit is contained in:
einarf
2023-03-08 23:29:15 +01:00
parent 47d74a2ef7
commit 5f6b1cd7a3
9 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from .base import BaseCommand
class Command(BaseCommand):
"""List snapshots"""
name = "snapshots"
def run(self):
print("Snapshots!")