MauriceBrg/lambda_bundler

View on GitHub
lambda_bundler/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Module that exposes the methods from the submodules"""
import logging
from lambda_bundler.bundler import build_layer_package, build_lambda_package

LOGGER = logging.getLogger("lambda_bundler")
LOGGER.setLevel(logging.DEBUG)