21 lines
570 B
C#
21 lines
570 B
C#
|
using System.Threading.Tasks;
|
|||
|
using FarmmapsApi;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|||
|
namespace FarmmapsBulkSatDownload
|
|||
|
{
|
|||
|
class Program : FarmmapsProgram<BulkSatDownloadApplication>
|
|||
|
{
|
|||
|
private static async Task Main(string[] args)
|
|||
|
{
|
|||
|
await new Program().Start(args);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Configure(IServiceCollection serviceCollection)
|
|||
|
{
|
|||
|
serviceCollection.AddLogging()
|
|||
|
.AddTransient<BulkSatDownloadService>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|