8#ifndef __CONTROLLER_LIBEXRESS_H
9#define __CONTROLLER_LIBEXRESS_H 1
14typedef void (controller_t) (
req_t *req,
res_t *res);
15typedef controller_t middleware_t;
This contains all the request related material.
This contains all the response related material.
Request made by client.
Definition: req.h:21
Response being sent to the client.
Definition: res.h:27