mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-07 07:01:16 +00:00
16 lines
178 B
C++
16 lines
178 B
C++
#ifndef __CHATWEB_H__
|
|
#define __CHATWEB_H__
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
#include "Web.h"
|
|
|
|
namespace ChatWeb {
|
|
void RegisterRoutes();
|
|
};
|
|
|
|
|
|
#endif // __CHATWEB_H__
|
|
|