2
0

Upgraded test-setup

This commit is contained in:
glax 2023-05-18 17:22:10 +02:00
parent 40242ee7ca
commit 2b7f759e7e

View File

@ -7,8 +7,9 @@ public class Program
public static void Main(string[] args)
{
MangaDex mangaDexConnector = new MangaDex("D:");
Publication[] publications = mangaDexConnector.GetPublications();
Console.ReadKey();
Publication[] publications = mangaDexConnector.GetPublications("test");
Chapter[] chapters = mangaDexConnector.GetChapters(publications[1]);
mangaDexConnector.DownloadChapter(publications[1], chapters[0]);
}
}