1
0
mirror of https://github.com/openfaas/faas.git synced 2025-06-19 12:36:40 +00:00
Files
faas/sample-functions/BaseFunctions/python/handler.py

12 lines
173 B
Python

import sys
def get_stdin():
buf = ""
for line in sys.stdin:
buf = buf + line
return buf
if(__name__ == "__main__"):
st = get_stdin()
print(st)