dotnet-module/PoweredSoft.Module.Abstractions/IModule.cs

11 lines
228 B
C#
Raw Normal View History

2021-08-11 15:23:58 -04:00
using Microsoft.Extensions.DependencyInjection;
using System;
namespace PoweredSoft.Module.Abstractions
{
public interface IModule
{
IServiceCollection ConfigureServices(IServiceCollection services);
}
}