1
0
Fork 0
mirror of synced 2024-06-14 08:44:49 +12:00

Update swift GETTING_STARTED.md

This commit is contained in:
Pratik Gupta 2023-10-19 01:19:07 +05:30 committed by GitHub
parent a26c9214cb
commit b2e4513af3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,9 +26,9 @@ let users = Users(client)
do {
let user = try await users.create(
userId: ID.unique(),
email: 'email@example.com',
phone: '+123456789',
password: 'password',
email: "email@example.com",
phone: "+123456789",
password: "password",
name: "Walter O'Brien"
)
print(String(describing: user.toMap()))
@ -54,9 +54,9 @@ func main() {
do {
let user = try await users.create(
userId: ID.unique(),
email: 'email@example.com',
phone: '+123456789',
password: 'password',
email: "email@example.com",
phone: "+123456789",
password: "password",
name: "Walter O'Brien"
)
print(String(describing: user.toMap()))