1
0

Replace Linqpad-only methods and split into files (works except Hyperlinq)

This commit is contained in:
2023-08-20 16:10:39 +02:00
parent ccfeedc067
commit 9692dc531f
16 changed files with 1748 additions and 1662 deletions

15
WPEbookScraper2.cs Normal file
View File

@@ -0,0 +1,15 @@
using WordpressEboobScraper2.Scraper;
namespace WordpressEboobScraper2;
public class WPEbookScraper2
{
public static void Main()
{
var scraper = new Scraper.Scraper();
if (Config.MODE == MainMode.Generate) scraper.Generate();
if (Config.MODE == MainMode.Verify) scraper.Verify();
}
}