James Tombleson
bacc04ad7d
* Adding a youtube controller to trigger the job * Renamed jobs controller to rss * cleaned up background jobs and added youtube to the startup. * Handled merge issues and validated things are still working.
14 lines
313 B
C#
14 lines
313 B
C#
using System.Net.Sockets;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Newsbot.Collector.Tests;
|
|
|
|
public static class TestHelper
|
|
{
|
|
public static IConfiguration LoadConfig()
|
|
{
|
|
return new ConfigurationBuilder()
|
|
.AddJsonFile("appsettings.json", false)
|
|
.Build();
|
|
}
|
|
} |