| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
|---|---|
| 2 | // |
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 4 | |
| 5 | #ifndef LSP_H |
| 6 | #define LSP_H |
| 7 | |
| 8 | #include "common/lsp/client/client.h" |
| 9 | #include "common/lsp/protocol/newprotocol.h" |
| 10 | #include "common/lsp/protocol/protocol.h" |
| 11 | #include "common/lsp/server/route.h" |
| 12 | #include "common/lsp/server/serverapplication.h" |
| 13 | #include "common/lsp/server/servercmdparse.h" |
| 14 | #include "common/lsp/server/stdinjsonrpcparser.h" |
| 15 | #include "common/lsp/server/stdinreadloop.h" |
| 16 | |
| 17 | #endif // LSP_H |
| 18 |