class Standard::Lsp::Routes

def handle_unsupported_method(request, method = request[:method])

def handle_unsupported_method(request, method = request[:method])
  @writer.write({id: request[:id], error: Proto::Interface::ResponseError.new(
    code: Proto::Constant::ErrorCodes::METHOD_NOT_FOUND,
    message: "Unsupported Method: #{method}"
  )})
  @logger.puts "Unsupported Method: #{method}"
end