From 437515594d16d33af38e00732dcbd07b4f6d588d Mon Sep 17 00:00:00 2001 From: RobKraft Date: Mon, 12 Aug 2019 11:57:07 -0500 Subject: [PATCH] Include using statements in the code sample (#984) Include the necessary using statements in the code sample --- docs/introduction/gettingstarted.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/introduction/gettingstarted.rst b/docs/introduction/gettingstarted.rst index bb8d8bd6..cf2239fc 100644 --- a/docs/introduction/gettingstarted.rst +++ b/docs/introduction/gettingstarted.rst @@ -42,6 +42,9 @@ AddOcelot() (adds ocelot services), UseOcelot().Wait() (sets up all the Ocelot m .. code-block:: csharp + using Ocelot.DependencyInjection; + using Ocelot.Middleware; + public class Program { public static void Main(string[] args)