Source code for luna_python_matcher.app_proxy.app
"""Application server."""
from app_common.base_application import MatcherBaseApp
from app_proxy.context import PythonMatcherProxyCtx
from configs.configs.configs.services.matcher_proxy import SettingsPythonMatcherProxy
[docs]class PythonMatcherProxyApp(MatcherBaseApp[SettingsPythonMatcherProxy, PythonMatcherProxyCtx]):
"""
Python matcher proxy application
"""
ctxCls = PythonMatcherProxyCtx
configCls = SettingsPythonMatcherProxy