Add constants for status codes

This commit is contained in:
2026-08-03 03:13:30 +00:00
parent ee2280da50
commit e421d75960
2 changed files with 19 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* 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;