forked from FarmMaps/FarmMapsApiClient
24 lines
696 B
C#
24 lines
696 B
C#
using System.Threading.Tasks;
|
|
using FarmmapsApi;
|
|
using FarmmapsZonering.Services;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace FarmmapsZonering
|
|
{
|
|
class Program : FarmmapsProgram<ZoneringApplication>
|
|
{
|
|
private static async Task Main(string[] args)
|
|
{
|
|
await new Program().Start(args);
|
|
}
|
|
|
|
protected override void Configure(IServiceCollection serviceCollection)
|
|
{
|
|
serviceCollection.AddLogging(opts => opts
|
|
.AddConsole()
|
|
.AddFilter("System.Net.Http", LogLevel.Warning))
|
|
.AddTransient<ZoneringService>();
|
|
}
|
|
}
|
|
} |