mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-24 13:01:28 +00:00
refactor(backup): add a placeholder Backups singleton class
This commit is contained in:
parent
88b715464d
commit
33df16f743
|
@ -1,6 +1,10 @@
|
|||
from abc import ABC, abstractmethod
|
||||
|
||||
|
||||
class Backups:
|
||||
"""A singleton controller for backups"""
|
||||
|
||||
|
||||
class AbstractBackuper(ABC):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue