19 lines
316 B
C#
19 lines
316 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Diary.Installers
|
|
{
|
|
public static class DependencyInstallers
|
|
{
|
|
public static IServiceCollection AddDependencies(this IServiceCollection services)
|
|
{
|
|
return services;
|
|
|
|
}
|
|
|
|
}
|
|
}
|