blob: 0364a1c18622ec75692c9b6a781e871b885a641a [file] [log] [blame]
Jan Tattermuschf4bc99e2016-04-25 09:13:38 -07001#region Copyright notice and license
2
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Copyright 2016 gRPC authors.
Jan Tattermuschf4bc99e2016-04-25 09:13:38 -07004//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
Jan Tattermuschf4bc99e2016-04-25 09:13:38 -07008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// http://www.apache.org/licenses/LICENSE-2.0
Jan Tattermuschf4bc99e2016-04-25 09:13:38 -070010//
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Jan Tattermuschf4bc99e2016-04-25 09:13:38 -070016
17#endregion
18
19using System;
Jan Tattermusch445a82b2016-04-21 13:18:26 -070020
21namespace Grpc.IntegrationTesting.StressClient
22{
23 class MainClass
24 {
25 public static void Main(string[] args)
26 {
27 StressTestClient.Run(args);
28 }
29 }
30}