mirror of
https://github.com/sigmasternchen/CShore
synced 2025-03-15 08:08:56 +00:00
8 lines
105 B
C
8 lines
105 B
C
#ifndef HANDLER_H
|
|
#define HANDLER_H
|
|
|
|
#include "request.h"
|
|
|
|
typedef response_t (handle_t)(ctx_t);
|
|
|
|
#endif
|