Refactor wallabag conversion to have simple cli
This commit is contained in:
parent
813327f939
commit
59aaa74d76
8 changed files with 149 additions and 79 deletions
6
wallabag2hoarder/base.py
Normal file
6
wallabag2hoarder/base.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
class Wallabag_Converter:
|
||||
def __init__(self, data: list[object]):
|
||||
self.data = data
|
||||
|
||||
def convert(self) -> object:
|
||||
raise NotImplementedError()
|
||||
Loading…
Add table
Add a link
Reference in a new issue