15 lines
383 B
C#
15 lines
383 B
C#
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
using ProxmoxConnector.Integration.Corsinvest;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace ProxmoxConnector.Server.Application
|
|||
|
{
|
|||
|
public static class DependencyInjectionExtensions
|
|||
|
{
|
|||
|
public static void AddApplicationServices(this IServiceCollection services)
|
|||
|
{
|
|||
|
services.AddCorsinvestPveConnector();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|