Add "/" route redirect to GH repo

This commit is contained in:
2025-04-01 16:10:20 +03:30
parent 5149db155d
commit 4a6e1eea27

View File

@@ -17,6 +17,9 @@ var subscribers = new ConcurrentDictionary<string, List<StreamWriter>>();
var cancellationSources =
new ConcurrentDictionary<string, CancellationTokenSource>(); // 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");