CShore/router.h
2021-04-29 18:40:41 +02:00

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