tjx
2025-10-11 cdd53f350537ee64fa7c9c375f1abdeb51a7294f
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);
}