Display config values in header and footer.

This commit is contained in:
baldo 2022-05-19 13:33:48 +02:00
commit fde340ead0
13 changed files with 344 additions and 80 deletions

View file

@ -0,0 +1,10 @@
import {success} from "../utils/resources";
import {config} from "../config";
import {Request, Response} from "express";
export function get (req: Request, res: Response): void {
success(
res,
config.client
);
}