refactor(backup): add a placeholder Backups singleton class

l10n
Houkime 2023-02-08 14:18:45 +00:00
parent 88b715464d
commit 33df16f743
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