2023-05-29 21:46:05 +02:00
|
|
|
#ifndef LANDER
|
|
|
|
#define LANDER
|
|
|
|
|
|
|
|
#include "http_loop.h"
|
|
|
|
|
2023-05-30 10:17:46 +02:00
|
|
|
extern http_route lander_routes[4];
|
2023-05-29 23:26:15 +02:00
|
|
|
|
2023-05-30 09:37:40 +02:00
|
|
|
bool lander_get_index(event_loop_conn *conn);
|
|
|
|
|
|
|
|
bool lander_get_entry(event_loop_conn *conn);
|
|
|
|
|
2023-05-29 23:26:15 +02:00
|
|
|
bool lander_post_redirect(event_loop_conn *conn);
|
2023-05-29 21:46:05 +02:00
|
|
|
|
2023-05-30 10:17:46 +02:00
|
|
|
bool lander_post_paste(event_loop_conn *conn);
|
|
|
|
|
2023-05-29 21:46:05 +02:00
|
|
|
#endif
|