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")
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
functions-swift
Swift Client library to interact with Supabase Functions.
Usage