Update index.js

This commit is contained in:
khaybarkhaybaryayahud 2024-01-21 20:58:54 -05:00 committed by GitHub
parent 259af4e08b
commit 47b5267143

View File

@ -43,6 +43,13 @@ app.get('/ad', (req, res) => {
res.sendFile(path.join(__dirname, 'ad.html'));
});
app.get('/blank', (req, res) => {
res.sendFile(path.join(__dirname, 'blank.html'));
});
app.get('/backgrounds', (req, res) => {
res.sendFile(path.join(__dirname, 'backgrounds.html'));
});
app.listen(port, () => {
console.log(`Selenite is running on port ${port}`);
});