import { Request, Response, NextFunction } from "express"; import response from "@server/utils/response"; import HttpCode from "@server/types/HttpCode"; // define zod type here export async function createSite( req: Request, res: Response, next: NextFunction, ): Promise { return response(res, { data: null, success: true, error: false, message: "Logged in successfully", status: HttpCode.OK, }); }