Refactor code structure for improved readability and maintainability
This commit is contained in:
parent
b47641feaa
commit
4f488bae45
78 changed files with 3309 additions and 1570 deletions
12
dotnet/src/TwitchArchive.Core/Services/IDownloaderService.cs
Normal file
12
dotnet/src/TwitchArchive.Core/Services/IDownloaderService.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using TwitchArchive.Core.Api;
|
||||
|
||||
namespace TwitchArchive.Core.Services
|
||||
{
|
||||
public interface IDownloaderService
|
||||
{
|
||||
Task<bool> DownloadVodAsync(VodInfo vod, string outputPath, CancellationToken ct = default);
|
||||
Task<bool> DownloadChatJsonAsync(string vodId, string jsonPath, CancellationToken ct = default);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue