-
Navigate to IBM Cloud Functions
-
Connect the dots:
import sys from os import popen def main(dict): out = str(popen("whoareyou").read()) return {"message":out}
-
Invoke the action
Navigate to IBM Cloud Functions
Connect the dots:
import sys
from os import popen
def main(dict):
out = str(popen("whoareyou").read())
return {"message":out}
Invoke the action