mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
7 lines
No EOL
195 B
JavaScript
7 lines
No EOL
195 B
JavaScript
const fs = require("node:fs");
|
|
|
|
module.exports = async function homeRoute(fastify) {
|
|
fastify.get('/', (req, res) => {
|
|
res.send(fs.createReadStream('./src/html/index.html'));
|
|
});
|
|
} |