22 lines
470 B
C#
22 lines
470 B
C#
using Microsoft.Extensions.Hosting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.HostBuilders
|
|
{
|
|
static class AddStoresHostBuilderExtensions
|
|
{
|
|
public static IHostBuilder AddStores(this IHostBuilder hostBuilder)
|
|
{
|
|
hostBuilder.ConfigureServices(services =>
|
|
{
|
|
|
|
});
|
|
return hostBuilder;
|
|
}
|
|
}
|
|
}
|