mirror of
https://github.com/ZettaIO/restic-compose-backup.git
synced 2025-12-14 09:52:21 +00:00
10 lines
150 B
Python
10 lines
150 B
Python
from .base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""Show version"""
|
|
name = "version"
|
|
|
|
def run(self):
|
|
print("Version!")
|