Convert-it/Areas/AudioTools/Controllers/TextToSpeechController.cs
Ricardo Carneiro 724e03176e
All checks were successful
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Successful in 21m10s
feat: conversor de audio
2026-01-25 14:47:46 -03:00

16 lines
331 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Convert_It_Online.Areas.AudioTools.Controllers
{
[Area("AudioTools")]
[Route("{culture}/[area]/[controller]")]
public class TextToSpeechController : Controller
{
[HttpGet]
public IActionResult Index()
{
return View();
}
}
}