Refactor wallabag conversion to have simple cli

This commit is contained in:
Marty Oehme 2025-03-12 14:16:59 +01:00
parent 813327f939
commit 59aaa74d76
Signed by: Marty
GPG key ID: 4E535BC19C61886E
8 changed files with 149 additions and 79 deletions

6
wallabag2hoarder/base.py Normal file
View file

@ -0,0 +1,6 @@
class Wallabag_Converter:
def __init__(self, data: list[object]):
self.data = data
def convert(self) -> object:
raise NotImplementedError()