mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-05 19:13:11 +00:00
11 lines
216 B
Python
11 lines
216 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class AbstractBackuper(ABC):
|
|
def __init__(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def start_backup(self, folder: str, repo_name: str):
|
|
raise NotImplementedError
|