From 2b7f759e7eb242bbef0e884b7165d78c3e58478e Mon Sep 17 00:00:00 2001 From: glax <--local> Date: Thu, 18 May 2023 17:22:10 +0200 Subject: [PATCH] Upgraded test-setup --- Tranga-CLI/Program.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Tranga-CLI/Program.cs b/Tranga-CLI/Program.cs index fc89b26..476d9e7 100644 --- a/Tranga-CLI/Program.cs +++ b/Tranga-CLI/Program.cs @@ -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]); } } \ No newline at end of file