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.service_proxy_config import ServiceProxySettings
[docs]
class PythonMatcherProxyApp(MatcherBaseApp[ServiceProxySettings, PythonMatcherProxyCtx]):
    """
    Python matcher proxy application
    """
    ctxCls = PythonMatcherProxyCtx
    configCls = ServiceProxySettings