14 lines
161 B
C++
14 lines
161 B
C++
#ifndef MEMGRAPH_SERVER_UV_CORE_HPP
|
|
#define MEMGRAPH_SERVER_UV_CORE_HPP
|
|
|
|
#include <uv.h>
|
|
|
|
namespace uv
|
|
{
|
|
|
|
using callback_t = void (*)(uv_handle_t *);
|
|
|
|
}
|
|
|
|
#endif
|