#ifndef ROUTER_H #define ROUTER_H #include #include "handler.h" int registerRoute(method_t method, const char* path, handle_t handle); response_t routerHandler(ctx_t ctx); #endif