文件名称:openwhisk-runtime-swift:Apache OpenWhisk运行时Swift支持以Swift编写的Apache OpenWhisk函数
文件大小:183KB
文件格式:ZIP
更新时间:2024-04-21 06:09:55
swift docker cloud serverless functions
Swift的Apache OpenWhisk运行时 变更日志 快速动作 简单的快速动作hello.swift 对字典的传统支持仍然有效: import Foundation func main ( args : [ String : Any ]) -> [ String : Any ] { if let name = args[ " name " ] as? String { return [ " greeting " : " Hello \( name ) ! " ] } else { return [ " greeting " : " Hello stranger! " ] } } Swift 5.x支持 使用Codable In和Out的一些示例 可编码样式功能签名 创建文件helloCodableAsync.swift