Added a new request handler to return back the service version

This commit is contained in:
Leila Lali
2016-08-22 15:08:44 -07:00
parent 4631f2083e
commit 3f1d3cb9db
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//
// 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.ServiceLayer.Hosting.Protocol.Contracts;
namespace Microsoft.SqlTools.ServiceLayer.Hosting.Contracts
{
public class VersionRequest
{
public static readonly
RequestType<string, string> Type =
RequestType<string, string>.Create("version");
}
}