11 lines
282 B
C
11 lines
282 B
C
#ifndef __MESSAGES_H__
|
|
#define __MESSAGES_H__
|
|
|
|
#include "Core/MessageManager.h"
|
|
#include <boost/callable_traits/return_type.hpp>
|
|
|
|
struct NotifyServerChan {
|
|
using Signature = void(const boost::beast::http::request<boost::beast::http::string_body> &);
|
|
};
|
|
|
|
#endif // __MESSAGES_H__
|