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