mirror of
https://github.com/appwrite/appwrite
synced 2026-05-15 13:08:31 +00:00
424 B
424 B
import Appwrite
func main() async throws { let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID let account = Account(client) let account = try await account.create( userId: "[USER_ID]", email: "email@example.com", password: "password" )
print(String(describing: account)
}