Bump version to 1.0.0
functions-swift
Swift Client library to interact with Supabase Functions.
let client = FunctionsClient( url: URL(string: "https://project-id.supabase.com/functions/v1")!, headers: [ "apikey": "project-api-key" ] ) struct Response: Decodable { let message: String } let response: Response = try await client.invoke( functionName: "hello-world", invokeOptions: FunctionInvokeOptions(body: ["name": "Functions"]) ) assert(response.message = "Hello Functions")
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
functions-swiftSwift Client library to interact with Supabase Functions.
Usage