From 17a5db2edc255a1eb419b85a8575514cd06c11e4 Mon Sep 17 00:00:00 2001 From: Sreyanth Date: Thu, 2 Nov 2017 17:45:31 +0530 Subject: [PATCH] Delete sample program. --- src/Plivo/Program.cs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/Plivo/Program.cs diff --git a/src/Plivo/Program.cs b/src/Plivo/Program.cs deleted file mode 100644 index 08fcd453..00000000 --- a/src/Plivo/Program.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using Plivo.Client; -using System.Diagnostics; -namespace Plivo -{ - internal class Program - { - public static void Main(string[] args) - { - var api = new PlivoApi(authId: "MAM2I4NGU1ODM2NDM1M2", authToken: "YzRjZTE4MTJhOTYxMGQ0OGIzNzBhNTllZTM4YWE0"); - var response = api.Account.Get(); - - Debug.WriteLine(response); - } - } -}