mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-04 07:35:02 +00:00
Added some error handling for add entry
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PodNoms.Api.Services.Processor
|
||||
{
|
||||
public interface IUrlProcessService
|
||||
{
|
||||
Task<bool> GetInformation(int entryId);
|
||||
Task<bool> DownloadAudio(int entryId);
|
||||
namespace PodNoms.Api.Services.Processor {
|
||||
public interface IUrlProcessService {
|
||||
Task<bool> CheckUrlValid (string url);
|
||||
Task<bool> GetInformation (int entryId);
|
||||
Task<bool> DownloadAudio (int entryId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user