aboutsummaryrefslogtreecommitdiff
path: root/src/pp/server.js
blob: c1a537085130edb89d60dd6822abb4df20b368c8 (plain)
1
2
3
4
5
6
7
8
9
10
const express = require('express');

function setUpRoutes(server, models, jwtFunctions, database) {
    // server.get('/pp', (req, res) => res.sendFile(__dirname + "/static/index.html"))
    server.use('/pp', express.static(__dirname + "/static"))
}

module.exports = {
    setUpRoutes
};