12 lines
273 B
C#
12 lines
273 B
C#
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
namespace NetworkResurrector.Agent.Application
|
|||
|
{
|
|||
|
public static class DependencyInjectionExtensions
|
|||
|
{
|
|||
|
public static void AddApplicationServices(this IServiceCollection services)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|