13 lines
242 B
Python
13 lines
242 B
Python
'''
|
|
This file is used to list lambda functions and event mappings
|
|
'''
|
|
from libs.aws_lambda import *
|
|
|
|
|
|
def module_lambda_list_functions():
|
|
list_functions()
|
|
|
|
|
|
def module_lambda_list_event_source_mappings():
|
|
list_event_source_mappings()
|