Files
Examples/GerstITS.WebClients.Example.Api/Module.Configurations.cs
2021-06-15 10:59:47 +02:00

17 lines
437 B
C#

using GerstITS.Examples.WebClients.Examples.Api.Configurations;
using Microsoft.Extensions.DependencyInjection;
namespace GerstITS.Examples.WebClients.Examples.Api
{
public sealed partial class Module
{
#region Methods
private static void RegisterConfigurations(IServiceCollection container)
{
container.AddSingleton<ExampleApiClientConfiguration>();
}
#endregion
}
}