From 4bb097af96822b32eba567dbfcf6f7ec22a00ba8 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Tue, 28 Dec 2021 19:02:10 -0500 Subject: [PATCH] no double run --- Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Program.cs b/Program.cs index a207687..5c9ecc0 100644 --- a/Program.cs +++ b/Program.cs @@ -10,4 +10,3 @@ app.UseHttpsRedirection(); app.MapGet("/", () => "Hello World!"); var port = Environment.GetEnvironmentVariable("PORT") ?? "3100"; app.Run("http://*:" + port); -app.Run();