chore: remove useless log
All checks were successful
Build & Push Docker Image / build (push) Successful in 22s
Test & Build / build (push) Successful in 30s

This commit is contained in:
Corban-Lee Jones 2025-05-20 17:20:23 +01:00
parent ec2f62ab3b
commit 22c35ae1da

View File

@ -1,9 +1,7 @@
import { Request, Response } from "express";
import { logger } from "@server/../log";
const get = async (_request: Request, response: Response) => {
response.render("home", { title: "home page" });
logger.info("Success");
};
export default { get }