Update index

This commit is contained in:
Ryahn 2025-01-27 21:17:06 -05:00
parent 108722f4c6
commit 79a6fc9b54

View File

@ -2,7 +2,10 @@ const express = require('express');
const router = express.Router();
router.get('/', async (req, res) => {
res.send(`<h3>2weekmail API</h3><a href="/docs">API Documentation</a>`);
res.send(`<h3>2weekmail API</h3>
<p>Temporary email service<br>All emails and messages are deleted after 14 days</p>
<p>API Documentation: <a href="/docs">API Documentation</a></p>
<p>Made with by <a href="https://f95zone.to/members/ryahn.99264/">Ryahn</a></p>`);
});
module.exports = router;