Files
clice/include/LSP/Server.h
2024-06-30 19:37:26 +08:00

16 lines
250 B
C++

#include <uv.h>
namespace clice {
/// core class responsible for starting the server
class Server {
static uv_loop_t* loop;
static uv_pipe_t stdin_pipe;
public:
static int Initialize();
static int Exit();
};
} // namespace clice