mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
8 lines
107 B
Python
8 lines
107 B
Python
# -*- coding: utf8 -*-
|
|
|
|
|
|
def main_handler(event, context):
|
|
print(str(event))
|
|
return "hello world"
|
|
|