feat: pivot to social media workflow app
This commit is contained in:
16
backend/Modules/Notifications/DependencyInjection.cs
Normal file
16
backend/Modules/Notifications/DependencyInjection.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Socialize.Modules.Notifications.Contracts;
|
||||
using Socialize.Modules.Notifications.Data;
|
||||
using Socialize.Modules.Notifications.Services;
|
||||
|
||||
namespace Socialize.Modules.Notifications;
|
||||
|
||||
public static class DependencyInjection
|
||||
{
|
||||
public static WebApplicationBuilder AddNotificationsModule(
|
||||
this WebApplicationBuilder builder)
|
||||
{
|
||||
builder.Services.AddScoped<INotificationEventWriter, NotificationEventWriter>();
|
||||
|
||||
return builder;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user