Add endpoints

This commit is contained in:
Owen Schwartz 2024-10-01 21:34:07 -04:00
parent fc5dca136f
commit 1273747099
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
22 changed files with 350 additions and 45 deletions

View file

@ -0,0 +1,15 @@
import { Request, Response, NextFunction } from 'express';
import response from "@server/utils/response";
import HttpCode from '@server/types/HttpCode';
export async function deleteOrg(req: Request, res: Response, next: NextFunction) {
return res.status(HttpCode.OK).send(
response<null>({
data: null,
success: true,
error: false,
message: "Logged in successfully",
status: HttpCode.OK,
}),
);
}