Finish authenticated API endpoints on cgi_blerg
[blerg.git] / http / canned_responses.h
1 #ifndef _CANNED_RESPONSES
2 #define _CANNED_RESPONSES
3
4 struct MHD_Response *response_401;
5 struct MHD_Response *response_404;
6 struct MHD_Response *response_405;
7 struct MHD_Response *response_JSON_Success;
8 struct MHD_Response *response_JSON_Failure;
9
10 void init_responses();
11
12 #endif /* _CANNED_RESPONSES */