1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00

Update apple GETTING_STARTED.md

This commit is contained in:
Pratik Gupta 2023-10-19 00:43:47 +05:30 committed by GitHub
parent a66fc13ebc
commit 8fed930b7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,9 +76,9 @@ let account = Account(client)
do {
let user = try await account.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()))
@ -103,9 +103,9 @@ func main() {
do {
let user = try await account.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: account.toMap()))