All checks were successful
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Successful in 21m10s
10 lines
214 B
C#
10 lines
214 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Convert_It_Online.Services
|
|
{
|
|
public interface IAudioTranscriptionService
|
|
{
|
|
Task<string> TranscribeAsync(string inputPath, string culture = "pt-BR");
|
|
}
|
|
}
|