Source code for luna_python_matcher.app.app
"""Sanic application server."""
from app.context import PythonMatcherCtx
from app_common.base_application import MatcherBaseApp
from configs.configs.configs.services.python_matcher import SettingsPythonMatcher
[docs]class PythonMatcherApp(MatcherBaseApp[SettingsPythonMatcher, PythonMatcherCtx]):
    """
    Python matcher application
    """
    ctxCls = PythonMatcherCtx
    configCls = SettingsPythonMatcher
    defaultPort = 5100