import { Request, Response } from 'express';
export const helloWorld = async (_req: Request, res: Response) => {
res.setHeader('Content-Type', 'application/json');
res.status(200).json({ message: "Hello World!" });
};
import { Request, Response } from 'express';
export const helloWorld = async (_req: Request, res: Response) => {
res.setHeader('Content-Type', 'application/json');
res.status(200).json({ message: "Hello World!" });
};