cnf
2025-08-02 a76bd130f97d72f65d666f2f299c44f1df03d5be
1
2
3
4
5
6
7
8
9
10
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
 
namespace Gs.Toolbox.ApiCore.Abstract;
 
public interface IModule
{
    void ConfigService(IServiceCollection service);
    void ApplicationConfig(WebApplication application);
}