refactor(backup): add a placeholder Backups singleton class

restic-rewrite-api
Houkime 2023-02-08 14:18:45 +00:00
parent 17df21964a
commit d5881cc523
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
from abc import ABC, abstractmethod
class Backups:
"""A singleton controller for backups"""
class AbstractBackuper(ABC):
def __init__(self):
pass