Merge branch '3-add-routing' into 4-add-broadcaster

This commit is contained in:
2026-08-03 03:14:33 +00:00
2 changed files with 17 additions and 1 deletions
+15
View File
@@ -1,3 +1,18 @@
/**
* Success response status code.
*/
export const HTTP_STATUS_CODE_SUCCESS = 200;
/**
* Created response status code.
*/
export const HTTP_STATUS_CODE_CREATED = 201;
/**
* No content response status code.
*/
export const HTTP_STATUS_CODE_NO_CONTENT = 204;
/**
* HTTP status code for "Not Acceptable" error.
*/