add rewind :3

This commit is contained in:
Ashley 2023-12-25 15:51:54 +00:00
parent 48ed191b57
commit 7f04604646

View file

@ -67,6 +67,10 @@ module.exports = function (app, config, renderTemplate) {
}
});
app.get("/rewind", function (req, res) {
renderTemplate(res, req, "rewind.ejs");
});
app.get("/domains", function (req, res) {
renderTemplate(res, req, "domains.ejs");
});