summaryrefslogtreecommitdiffhomepage
path: root/example/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'example/index.js')
-rw-r--r--example/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/example/index.js b/example/index.js
index 2c274e1..46a7513 100644
--- a/example/index.js
+++ b/example/index.js
@@ -40,6 +40,12 @@ app.get('/generate-attestation-options', (req, res) => {
));
});
+app.post('/verify-attestation', (req, res) => {
+ const { body } = req;
+
+ console.log('verifying:', body);
+});
+
app.post('/verify-registration', (req, res) => {
const { body } = req;
});