aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ca53b37..85dfd7c 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Create a new endpoint with `create <name>`. Your endpoint is now live at http://
Use `upload <file> <endpoint>` to upload a file from your current working directory to an endpoint. Below is an example of such a file.
```
-module.exports = function (req, res) {
+module.exports = function (req, res, secrets) {
res.type('text/html');
res.send(<h1>Hello world!</h1>');
};