1
0
Fork 0
mirror of synced 2024-09-17 10:00:07 +12:00
appwrite/docs/examples/1.1.x/client-apple/examples/avatars/get-initials.md
2022-11-22 19:19:43 +00:00

326 B

import Appwrite

func main() async throws { let client = Client() .setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID let avatars = Avatars(client) let byteBuffer = try await avatars.getInitials()

print(String(describing: byteBuffer)

}