mirror of
https://github.com/open-goal/jak-project
synced 2026-07-12 07:38:53 -04:00
15 lines
303 B
C++
15 lines
303 B
C++
#pragma once
|
|
|
|
#include "common/log/log.h"
|
|
|
|
#include "lsp/protocol/initialize_result.h"
|
|
|
|
#include "third-party/json.hpp"
|
|
|
|
using json = nlohmann::json;
|
|
|
|
std::optional<json> initialize_handler(Workspace& /*workspace*/, int /*id*/, json /*params*/) {
|
|
InitializeResult result;
|
|
return result.to_json();
|
|
}
|