14 lines
565 B
C
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_
|