using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.DependencyInjection; namespace HopFrame.Api; public static class ControllerExtensions { public static IMvcBuilder AddController(this IMvcBuilder builder) where TController : ControllerBase { return builder.AddApplicationPart(typeof(TController).Assembly); } }