Need to fix date format

This commit is contained in:
2024-11-18 21:08:13 -07:00
commit 2391462500
32 changed files with 1502 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using ImmichToSlideshow.Services;
namespace ImmichToSlideshow.DependencyInjection;
public static class ServiceCollectionExtensions
{
public static IServiceCollection AddServices(this IServiceCollection services)
{
_ = services.AddScoped<AssetService>();
return services;
}
}