Files
aboba/routes.h
2025-06-15 13:44:32 +02:00

14 lines
565 B
C

#ifndef ROUTES_H_
#define ROUTES_H_
#include "mongoose/mongoose.h"
void route_page_not_found(struct mg_connection *conn, struct mg_http_message *msg);
void route_simple_css(struct mg_connection *conn, struct mg_http_message *msg);
void route_favicon(struct mg_connection *conn, struct mg_http_message *msg);
void route_hotreload_js(struct mg_connection *conn, struct mg_http_message *msg);
void route_home(struct mg_connection *conn, struct mg_http_message *msg);
void route_build_id(struct mg_connection *conn, struct mg_http_message *msg);
#endif // ROUTES_H_