16 lines
390 B
C#
16 lines
390 B
C#
using IdentityService.WebApi.Applications.Auth;
|
|
using IdentityService.WebApi.Applications.User;
|
|
using IM.Commons;
|
|
|
|
namespace IdentityService.WebApi
|
|
{
|
|
public class ModuleInit : IModuleInitializer
|
|
{
|
|
public void Initialize(IServiceCollection services)
|
|
{
|
|
services.AddScoped<AuthService>();
|
|
services.AddScoped<UserService>();
|
|
}
|
|
}
|
|
}
|