mirror of
https://github.com/sigmasternchen/CShore
synced 2025-03-15 08:08:56 +00:00
12 lines
193 B
C
12 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
|