mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Setup standard src, test folder structure. Add unit test project. * Actually stage the deletes. Update .gitignore
17 lines
506 B
C#
17 lines
506 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using Microsoft.SqlTools.EditorServices.Protocol.MessageProtocol;
|
|
|
|
namespace Microsoft.SqlTools.EditorServices.Protocol.LanguageServer
|
|
{
|
|
public class ShowOnlineHelpRequest
|
|
{
|
|
public static readonly
|
|
RequestType<string, object> Type =
|
|
RequestType<string, object>.Create("SqlTools/showOnlineHelp");
|
|
}
|
|
}
|