Split up main.c while keeping a single compilation unit

This commit is contained in:
2026-05-17 14:30:52 +02:00
parent 87db03d189
commit cd0ef696d7
5 changed files with 241 additions and 237 deletions

6
src/get_handler.c Normal file
View File

@@ -0,0 +1,6 @@
static enum MHD_Result handle_get(struct MHD_Connection *connection, SV url, SV base_path, SV username) {
(void)url;
(void)username;
(void)base_path;
return send_response(connection, 200, sv("TODO: Get\n"), false);
}