Source code for luna_lambda_tools.public.run
"""
This module provides function allowing to debug lambda
It requires:
- python 3.10+ with luna-lambda-tools installed
- valid `config.conf` with actual configuration in working directory
- valid `lambda_main.py` in working directory
"""
from typing import Literal
from ..private.run import run as _run
[docs]
def run(lambdaType: Literal["standalone", "handlers", "tasks"]):
"""Run lambda"""
_run(lambdaType=lambdaType)