12 lines
185 B
C
12 lines
185 B
C
|
#ifndef HV_HTTPD_ROUTER_H
|
||
|
#define HV_HTTPD_ROUTER_H
|
||
|
|
||
|
#include "HttpService.h"
|
||
|
|
||
|
class Router {
|
||
|
public:
|
||
|
static void Register(hv::HttpService& router);
|
||
|
};
|
||
|
|
||
|
#endif // HV_HTTPD_ROUTER_H
|