Add restaurant and organization controller

- Add restaurant controller
- Add organization controller
- Add files for types
This commit is contained in:
Stone_Red
2022-03-30 12:23:34 +02:00
parent cb62400f39
commit cf9b9eefbb
8 changed files with 286 additions and 86 deletions
+9
View File
@@ -0,0 +1,9 @@
export const HttpStatusCodes = {
OK: 200,
CREATED: 201,
MODIFIED: 202,
NO_CONTENT: 204,
BAD_REQUEST: 400,
NOT_FOUND: 404,
INTERNAL_SERVER: 500,
};