mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 16:56:47 +00:00
12 lines
173 B
Python
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)
|