Files
server/src/statusCodes.ts
T
Stone_Red cf9b9eefbb Add restaurant and organization controller
- Add restaurant controller
- Add organization controller
- Add files for types
2022-03-30 12:23:34 +02:00

10 lines
161 B
TypeScript

export const HttpStatusCodes = {
OK: 200,
CREATED: 201,
MODIFIED: 202,
NO_CONTENT: 204,
BAD_REQUEST: 400,
NOT_FOUND: 404,
INTERNAL_SERVER: 500,
};