List Blob Endpoint

This commit is contained in:
Your Name
2025-08-19 11:04:50 -04:00
parent ec976ab090
commit b2b1240136
17 changed files with 5337 additions and 46 deletions

View File

@@ -71,11 +71,11 @@ void handle_upload_requirements_request(void);
/////////////////////////////////////////////////////////////////////////////////////////
// HTTP response helpers
void send_error_response(int status_code, const char* message);
void send_error_response(int status_code, const char* error_type, const char* message, const char* details);
void send_json_response(int status_code, const char* json_content);
// Logging utilities
void log_request(const char* method, const char* uri, int status_code);
void log_request(const char* method, const char* uri, const char* auth_status, int status_code);
#ifdef __cplusplus
}