mirror of
https://gitee.com/jiuyilian/embedded-framework.git
synced 2025-01-06 10:16:51 -05:00
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
|