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