From 4a6e1eea270c2fc2ee9dc3bf2cd49415e9cbe891 Mon Sep 17 00:00:00 2001 From: Mohammad Mahdi Date: Tue, 1 Apr 2025 16:10:20 +0330 Subject: [PATCH] Add "/" route redirect to GH repo --- HoolIt/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HoolIt/Program.cs b/HoolIt/Program.cs index 1161463..7145fbb 100644 --- a/HoolIt/Program.cs +++ b/HoolIt/Program.cs @@ -17,6 +17,9 @@ var subscribers = new ConcurrentDictionary>(); var cancellationSources = new ConcurrentDictionary(); // To manage cancellation per feedId + +app.MapGet("/", () => Results.Redirect("https://github.com/mmahdium/HoolIt")); + // HAPI! // https://github.com/jheising/HAPI var createApi = app.MapGroup("/dweet/for");