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.service_config import ServiceSettings
[docs]
class PythonMatcherApp(MatcherBaseApp[ServiceSettings, PythonMatcherCtx]):
"""
Python matcher application
"""
ctxCls = PythonMatcherCtx
configCls = ServiceSettings