refactor: update layout again
This commit is contained in:
0
src/frontend/__init__.py
Normal file
0
src/frontend/__init__.py
Normal file
7
src/frontend/extractor/__init__.py
Normal file
7
src/frontend/extractor/__init__.py
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
from .common import Extractor
|
||||||
|
from .aust_extractor import AustExtractor
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
'Extractor',
|
||||||
|
'AustExtractor'
|
||||||
|
]
|
||||||
8
src/frontend/extractor/aust_extractor.py
Normal file
8
src/frontend/extractor/aust_extractor.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from .common import Extractor
|
||||||
|
|
||||||
|
class AustExtractor(Extractor):
|
||||||
|
|
||||||
|
def __init__(self) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
7
src/frontend/extractor/common.py
Normal file
7
src/frontend/extractor/common.py
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
|
class Extractor(ABC):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
from cli.xthesis2docx import XThesis2DocxCli, parse_cli
|
|
||||||
|
|
||||||
|
|
||||||
def main(opts: XThesis2DocxCli):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main(parse_cli())
|
|
||||||
Reference in New Issue
Block a user