From 1a1e54d7d12ba605c104fabc151132bdad1c0c76 Mon Sep 17 00:00:00 2001 From: Rohit Daryanani Date: Fri, 27 Oct 2017 14:14:55 +0800 Subject: [PATCH 1/3] add usage.md --- README.md | 4 +--- USAGE.md | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 USAGE.md diff --git a/README.md b/README.md index d251004..864e128 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ If you are looking for the SendGrid API client library, please see [this repo](h * [Announcements](#announcements) * [Installation](#installation) * [Quick Start](#quick-start) -* [Usage](#usage) +* [Library Usage Documentation](USAGE.md) * [Roadmap](#roadmap) * [How to Contribute](#contribute) * [Thanks](#thanks) @@ -89,8 +89,6 @@ Console.WriteLine(response.Headers.ToString()); # Usage -- [Example Code](https://github.com/sendgrid/csharp-http-client/blob/master/Example/Example.cs) - # Roadmap diff --git a/USAGE.md b/USAGE.md new file mode 100644 index 0000000..94f0184 --- /dev/null +++ b/USAGE.md @@ -0,0 +1 @@ +- [Example Code](https://github.com/sendgrid/csharp-http-client/blob/master/Example/Example.cs) \ No newline at end of file From 6c9e1213151161cc671123f2671eed24ece81de8 Mon Sep 17 00:00:00 2001 From: Matt Bernier Date: Fri, 17 Nov 2017 09:32:07 -0700 Subject: [PATCH 2/3] removed Usage section --- README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/README.md b/README.md index 0054847..fcdba5a 100644 --- a/README.md +++ b/README.md @@ -85,20 +85,6 @@ Console.WriteLine(response.StatusCode); Console.WriteLine(response.Body.ReadAsStringAsync().Result); Console.WriteLine(response.Headers.ToString()); ``` - -# Usage - -- [Example Code](https://github.com/sendgrid/csharp-http-client/blob/master/Example/Example.cs) - -## Environment Variables - -You can do the following to create a .env file: - -```cp .env_example .env``` - -Then, just add your API Key into your .env file. - - # Roadmap From 0c63d09cc4912753cee160abada2acb19726458f Mon Sep 17 00:00:00 2001 From: Matt Bernier Date: Fri, 17 Nov 2017 09:32:33 -0700 Subject: [PATCH 3/3] moved info here --- USAGE.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/USAGE.md b/USAGE.md index 94f0184..3df24d1 100644 --- a/USAGE.md +++ b/USAGE.md @@ -1 +1,11 @@ -- [Example Code](https://github.com/sendgrid/csharp-http-client/blob/master/Example/Example.cs) \ No newline at end of file +# Usage + +- [Example Code](https://github.com/sendgrid/csharp-http-client/blob/master/Example/Example.cs) + +## Environment Variables + +You can do the following to create a .env file: + +```cp .env_example .env``` + +Then, just add your API Key into your .env file.