17 lines
455 B
C#
17 lines
455 B
C#
using Socialize.Modules.Workspaces.Data;
|
|
using Socialize.Infrastructure.Development;
|
|
|
|
namespace Socialize.Modules.Workspaces;
|
|
|
|
public static class DependencyInjection
|
|
{
|
|
public static WebApplicationBuilder AddWorkspaceModule(
|
|
this WebApplicationBuilder builder)
|
|
{
|
|
builder.Services.Configure<DevelopmentSeedOptions>(
|
|
builder.Configuration.GetSection(DevelopmentSeedOptions.SectionName));
|
|
|
|
return builder;
|
|
}
|
|
}
|