"""The lambda handler.""" import sys sys.path.append('./sync_env') from sync_env import index # noqa def main(json_input=None, context=None): """The lambda handler. Args: json_input: (dict) A payload for the lambda. context: (LambdaContext) runtime information. """ index.main(json_input, context) if __name__ == '__main__': main()