aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/copilot/requests/signout.h
blob: 944c10d414b95191d57f0cd9475b94e80360b1cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "checkstatus.h"

#include <languageserverprotocol/jsonrpcmessages.h>
#include <languageserverprotocol/lsptypes.h>

namespace Copilot {

using SignOutParams = LanguageServerProtocol::JsonObject;

class SignOutRequest
    : public LanguageServerProtocol::Request<CheckStatusResponse, std::nullptr_t, SignOutParams>
{
public:
    explicit SignOutRequest()
        : Request(methodName, {})
    {}
    using Request::Request;
    constexpr static const char methodName[] = "signOut";
};

} // namespace Copilot