aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@eficode.com>2018-07-13 12:44:25 +0300
committerJan Tuomi <jan.tuomi@eficode.com>2018-07-13 12:44:25 +0300
commitea8e59bc8bf7e97b72a89a65889e5da38a6445fa (patch)
treeabf07df68d9d61a6d5c73b384093679ca0984d79 /README.md
parenta69b3b644a9275e43a3832ed9cf3ccfbda336189 (diff)
Implement command to list secret keysmaster
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>');
};