You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: fix complete interface, change resp to res, improve test coverage, add exists to buckets (#23)
* fix return type of task complete
* add file event worker
* change resp to res
* improve test coverage
* improve consistency of permissions
* fix late initialisation of workers
* consolidate channel handling
Copy file name to clipboardExpand all lines: README.md
+13-16Lines changed: 13 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@ The SDK is in early stage development and APIs and interfaces are still subject
34
34
35
35
# Building a REST API with Nitric
36
36
37
-
This guide will show you how to build a serverless REST API with the Nitric framework using Dart. The example API enables reading, writing and editing basic user profile information using a Nitric [collection](https://nitric.io/docs/collections) to store user data. Once the API is created we'll test it locally, then optionally deploy it to a cloud of your choice.
37
+
This guide will show you how to build a serverless REST API with the Nitric framework using Dart. The example API enables reading, writing and editing basic user profile information using a Nitric [key value store](https://nitric.io/docs/keyvalue) to store user data. Once the API is created we'll test it locally, then optionally deploy it to a cloud of your choice.
38
38
39
-
The example API enables reading, writing, and deleting profile information from a Nitric [collection](https://nitric.io/docs/collection).
39
+
The example API enables reading, writing, and deleting profile information from a Nitric [key value store](https://nitric.io/docs/keyvalue).
0 commit comments