mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-24 13:01:28 +00:00
5 lines
86 B
Python
5 lines
86 B
Python
from abc import ABC
|
|
|
|
class AbstractBackuper(ABC):
|
|
def __init__(self):
|
|
pass |