24 lines
585 B
C++
24 lines
585 B
C++
#include "./initialized_provider.hpp"
|
|
#include "../../lsp/logger.hpp"
|
|
|
|
namespace lsp::providers::initialized
|
|
{
|
|
|
|
nlohmann::json InitializedProvider::ProvideResponse(const LspRequest& request)
|
|
{
|
|
log::Debug("InitializedProvider: Providing response for method '", request.method, "' with id ", request.id);
|
|
return nlohmann::json();
|
|
}
|
|
|
|
inline std::string InitializedProvider::GetMethod() const
|
|
{
|
|
return "initialized";
|
|
}
|
|
|
|
inline std::string InitializedProvider::GetProviderName() const
|
|
{
|
|
return "InitializedProvider";
|
|
}
|
|
|
|
}
|