Продолжил делать API для манипуляции с юзерами

This commit is contained in:
2023-08-16 06:34:01 +03:00
parent 79a031401a
commit 611e213592
7 changed files with 112 additions and 10 deletions

View File

@@ -1,6 +1,12 @@
<?php
// Internal errors
$Err_Int_JSONEncodeError = "int.jsonencode";
$Err_Int_JSONEncode = "int.jsonencode"; // Failed to encode JSON data
// Request data parsing errors
$Err_RDP_InvalidID = "rdp.invalidid"; // Requested ID of resource is invalid
// Data processing errors
$Err_DP_IDNotFound = "dp.idnotfound"; // Resource not found by requested ID
?>