automated dev commit
This commit is contained in:
parent
37400d8b4d
commit
3fa01de2d9
1 changed files with 7 additions and 0 deletions
|
@ -26,6 +26,13 @@ var app = builder.Build();
|
|||
app.UseHttpsRedirection();
|
||||
app.UseRouting();
|
||||
|
||||
// Agregar redirección a la Wiki en la ruta raíz
|
||||
app.MapGet("/", context =>
|
||||
{
|
||||
context.Response.Redirect("https://git.mz.uy/marianozunino/dnic-soap/wiki/Gu%C3%ADa-para-generar-y-consumir-el-WSDL-del-servicio");
|
||||
return Task.CompletedTask;
|
||||
});
|
||||
|
||||
// Configurar endpoints SOAP
|
||||
app.UseEndpoints(endpoints =>
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue