summaryrefslogtreecommitdiff
path: root/website/src/actions/otp/otp.ts
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2025-12-18 11:03:32 +0000
committerJoe Carstairs <me@joeac.net>2025-12-18 11:03:32 +0000
commit40d6c7f248c3fe506690ee3ccb3894f952e164ed (patch)
treefe135c14cb58385d109a3bfcadde46dc5ffcafba /website/src/actions/otp/otp.ts
parenta81d1de1e58ee2c314dbbea941dcb4e4a776ed84 (diff)
otp actions
Diffstat (limited to 'website/src/actions/otp/otp.ts')
-rw-r--r--website/src/actions/otp/otp.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/website/src/actions/otp/otp.ts b/website/src/actions/otp/otp.ts
new file mode 100644
index 0000000..73c322a
--- /dev/null
+++ b/website/src/actions/otp/otp.ts
@@ -0,0 +1,7 @@
+import send from "./send-otp";
+import verify from "./verify-otp";
+
+export default {
+ send,
+ verify,
+};