10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import express, { Request, Response } from 'express';
|
|
import { prisma, __path } from '../../../index.js';
|
|
|
|
function get(req: Request, res: Response) {
|
|
res.render(__path + '/src/frontend/manage/startpage.eta.html'); //, { items: items });
|
|
}
|
|
|
|
|
|
export default { get };
|