Logging sorted

This commit is contained in:
2022-06-10 23:18:02 +01:00
parent e7c1fde35e
commit d15571a98d
9 changed files with 139 additions and 38 deletions

View File

@@ -0,0 +1,18 @@
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;
}
}
}