feat(News): refactor news service and add sentiment tracking

This commit is contained in:
2026-08-09 21:01:41 +02:00
parent 605e41cfeb
commit aff831cf58
390 changed files with 115094 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env pwsh
$Env:PLAYWRIGHT_DRIVER_SEARCH_PATH = $PSScriptRoot;
$playwrightLibrary = [System.IO.Path]::GetFullPath([System.IO.Path]::Combine($PSScriptRoot, "Microsoft.Playwright.dll"))
# We load the library via the memory to not keep the .dll file locked/opened.
[Reflection.Assembly]::Load([System.IO.File]::ReadAllBytes($playwrightLibrary)) | Out-Null
exit [Microsoft.Playwright.Program]::Main($args)