1
0

refactor: update layout again

This commit is contained in:
2026-06-07 14:17:16 +08:00
parent a18c7ea3aa
commit 6d611f172f
9 changed files with 22 additions and 9 deletions

0
src/frontend/__init__.py Normal file
View File

View File

@@ -0,0 +1,7 @@
from .common import Extractor
from .aust_extractor import AustExtractor
__all__ = [
'Extractor',
'AustExtractor'
]

View File

@@ -0,0 +1,8 @@
from .common import Extractor
class AustExtractor(Extractor):
def __init__(self) -> None:
pass

View File

@@ -0,0 +1,7 @@
from abc import ABC, abstractmethod
class Extractor(ABC):
pass

View File

@@ -1,9 +0,0 @@
from cli.xthesis2docx import XThesis2DocxCli, parse_cli
def main(opts: XThesis2DocxCli):
pass
if __name__ == "__main__":
main(parse_cli())