mirror of
https://github.com/sigmasternchen/CShore
synced 2025-03-15 16:18:56 +00:00
13 lines
193 B
C
13 lines
193 B
C
![]() |
#ifndef ROUTER_H
|
||
|
#define ROUTER_H
|
||
|
|
||
|
#include <misc.h>
|
||
|
|
||
|
#include "handler.h"
|
||
|
|
||
|
int registerRoute(method_t method, const char* path, handle_t handle);
|
||
|
|
||
|
response_t routerHandler(ctx_t ctx);
|
||
|
|
||
|
#endif
|