Рефактор
Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 9s

This commit is contained in:
2025-11-14 23:53:02 +03:00
parent a86ffdf5e7
commit eb89b98326
25 changed files with 1101 additions and 1202 deletions

View File

@@ -0,0 +1,13 @@
namespace ModeusSchedule.Abstractions;
// Базовый контракт плагина (общий для хоста и плагинов)
public interface IPlugin
{
string Name { get; }
// Регистрация сервисов плагина в DI (выполняется до Build())
void ConfigureServices(IServiceCollection services);
// Регистрация маршрутов (Minimal API) плагина после Build()
void MapEndpoints(IEndpointRouteBuilder endpoints);
}