Added the unmatched offset list and the offset matcher.

This commit is contained in:
2023-04-08 14:09:21 +08:00
parent 428018e4a9
commit 12d00c9c7d
9 changed files with 451 additions and 0 deletions

View File

@@ -88,4 +88,7 @@ def init_app(app: Flask, user_utils: UserUtilityInterface,
from . import option
option.init_app(bp)
from . import unmatched_offset
unmatched_offset.init_app(bp)
app.register_blueprint(bp, url_prefix=url_prefix)