mirror of
https://github.com/GithubOrgProjectPiza/server.git
synced 2026-09-04 00:26:07 +02:00
- Add restaurant controller - Add organization controller - Add files for types
10 lines
161 B
TypeScript
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,
|
|
};
|