refactor(backup): add a placeholder Backups singleton class

pull/35/head
Houkime 2023-02-08 14:18:45 +00:00 committed by Inex Code
parent 54103973bc
commit ff72d4124e
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