mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-25 21:41:27 +00:00
refactor(backup): add a placeholder Backups singleton class
This commit is contained in:
parent
54103973bc
commit
ff72d4124e
|
@ -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