aboutsummaryrefslogtreecommitdiff
path: root/src/controllers/home.controller.ts
blob: fb63ae1581cad9c166d962a6a720617f51742e34 (plain)
1
2
3
4
5
6
7
8
import { resolve } from "path";
import { RequestHandler } from "express";

const homePage: RequestHandler = (req, res) => {
  res.sendFile(resolve(__dirname, "..", "..", "public/index.html"));
};

export default homePage;