Added TTS

This commit is contained in:
2025-06-16 18:52:35 -04:00
parent 630d5d9f40
commit 96f43895fb
9 changed files with 166 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ namespace Astrocore.Api
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddHttpClient();
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
@@ -23,8 +23,8 @@ namespace Astrocore.Api
app.UseSwaggerUI();
}
//app.UseHttpsRedirection();
//app.UseAuthorization();
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();