Skip to content

Commit 35abe8b

Browse files
committed
fix readmes and changes
1 parent 6146e56 commit 35abe8b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ Once your SDK object is set, create any of the Appwrite service objects and choo
8282
```kotlin
8383
val users = Users(client)
8484
val response = users.create(
85+
user = "[USER_ID]",
8586
email = "[email protected]",
8687
password = "password",
8788
)
@@ -103,6 +104,7 @@ suspend fun main() {
103104

104105
val users = Users(client)
105106
val response = users.create(
107+
user = "[USER_ID]",
106108
email = "[email protected]",
107109
password = "password",
108110
)
@@ -122,6 +124,7 @@ suspend fun main() {
122124
val users = Users(client)
123125
try {
124126
val response = users.create(
127+
user = "[USER_ID]",
125128
email = "[email protected]",
126129
password = "password",
127130
)

0 commit comments

Comments
 (0)